fix: box-sizing: border-box

feat/type-attributes
Tomáš Mládek 2022-10-24 22:40:01 +02:00
parent f3b67bbe9a
commit 4b3e7fc7a1
1 changed files with 8 additions and 0 deletions

View File

@ -7,6 +7,14 @@ body {
height: 100%;
}
html {
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
#main {
display: flex;
flex-grow: 1;