mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-23 00:31:13 -05:00
43 lines
956 B
SCSS
43 lines
956 B
SCSS
* {
|
|
text-rendering: optimizeLegibility !important;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
scrollbar-width: thin;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
// contain: content;
|
|
background-size: cover !important;
|
|
background-repeat: no-repeat !important;
|
|
background-color: var(--background) !important;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
height: 100%;
|
|
font-family: var(--font), sans-serif;
|
|
font-variant-ligatures: var(--ligatures);
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
caret-color: var(--accent);
|
|
color: var(--foreground);
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-overflow-scrolling: touch;
|
|
-webkit-text-size-adjust: 100%;
|
|
overscroll-behavior: contain;
|
|
|
|
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
|
|
}
|
|
|
|
#app {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|