styles.scss
348 Bytes
html,
body {
height: 100% !important;
width: 100% !important;
}
.blur {
filter: blur(10px);
-webkit-filter: blur(10px);
}
.disable-user-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.blue-gradient{
background: linear-gradient(0deg, rgb(20,56,68),rgb(252, 252, 252));
}