revite/src/styles/_page.scss

44 lines
956 B
SCSS
Raw Normal View History

2021-06-18 10:35:35 -04:00
* {
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scrollbar-width: thin;
box-sizing: border-box;
}
html {
2021-06-19 07:34:53 -04:00
// contain: content;
2021-06-18 10:35:35 -04:00
background-size: cover !important;
background-repeat: no-repeat !important;
2021-06-24 16:07:07 -04:00
background-color: var(--background) !important;
2021-06-18 10:35:35 -04:00
}
html,
body {
2021-06-19 07:34:53 -04:00
margin: 0;
height: 100%;
font-family: var(--font), sans-serif;
font-variant-ligatures: var(--ligatures);
2021-06-18 10:35:35 -04:00
-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);
}
2021-06-19 07:34:53 -04:00
#app {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}