Cleanup CSS

* Use variable instead of fixed value
* Remove unnecessary calc()
This commit is contained in:
Pablo Vazquez 2022-07-07 11:58:56 +02:00
parent 58d9ab9fb5
commit ff4a4e8aa0

View File

@ -75,12 +75,12 @@
html,
body {
background-color: #111;
background-color: var(--color-background);
color: var(--color-text);
color-scheme: dark;
font-family: var(--font-family-body);
font-size: var(--font-size-base);
height: calc(100vh);
height: 100vh;
margin: 0;
padding: 0;
}