move globals out of component into css file

This commit is contained in:
2024-02-18 23:34:14 +01:00
parent cf79f75a5d
commit e3680da1ad
2 changed files with 19 additions and 19 deletions

View File

@ -35,3 +35,20 @@ a:not(:visited){
a:visited{
color: var(--purple);
}
*{
box-sizing: border-box;
font-family: Helvetica, Arial, "Noto Sans", sans-serif
}
body{
margin:0;
padding:0;
background-color: #fbf9f3;
overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
body{
color: white;
background-color: var(--background-dark);
}
}