box sizing border box

This commit is contained in:
2022-12-11 16:01:29 +01:00
parent cd602201cb
commit 9c41eaf4eb
2 changed files with 10 additions and 1 deletions

View File

@@ -19,12 +19,18 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--black0);
color: var(--color);
min-height: 100vh;
font-family: var(--fonts-norm);
display: flex;
flex-direction: column;
.footer {
justify-self: end;
}
}
h1,
h2,