39 lines
795 B
SCSS
39 lines
795 B
SCSS
body, html {
|
|
font-family: "SFProDisplay", sans-serif !important;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: #f4f3f3;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #979797;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #979797;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
z-index: -1;
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
body, html {
|
|
font-family: "SFProDisplay", sans-serif !important;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background-color: #f4f3f3;
|
|
}
|
|
|