fix scrollbar padding

This commit is contained in:
2023-04-17 19:56:33 +10:00
parent e0022b15c5
commit cbdc55df8f

View File

@@ -6,11 +6,13 @@
* { * {
box-sizing: border-box; box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
} }
html { html {
overflow: -moz-scrollbars-vertical; overflow: -moz-scrollbars-vertical;
overflow-y: scroll; overflow-y: auto;
} }
html, html,
@@ -19,9 +21,9 @@ body {
font-size: var(--default-font-size); font-size: var(--default-font-size);
background-color: var(--base-color); background-color: var(--base-color);
color: var(--base-color-text); color: var(--base-color-text);
width: 100vw; width: 100%;
min-height: 100vh; min-height: 100vh;
min-width: 100vw; min-width: 100%;
overflow-x: hidden; overflow-x: hidden;
} }