refactor: box-sizing

This commit is contained in:
cha0s 2024-07-07 23:25:07 -05:00
parent 520b255d5d
commit 65c23b50d9
2 changed files with 3 additions and 2 deletions

View File

@ -21,10 +21,10 @@
background-position: center;
background-repeat: no-repeat;
background-size: 75%;
height: calc(100% - var(--space) * 2);
height: 100%;
padding: var(--space);
position: relative;
width: calc(100% - var(--space) * 2);
width: 100%;
}
.qty {

View File

@ -6,6 +6,7 @@ html, body {
margin: 0;
width: 100%;
* {
box-sizing: border-box;
line-height: 1;
}
}