💄 Use of border-box box sizing

This makes calculating the size of the UI components easier, especially those which have padding, margin or border.
This commit is contained in:
2024-05-23 08:45:51 +02:00
parent 19d64d7ac5
commit e7e1a4d663
5 changed files with 17 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ $modal-max-height: 55vh;
border-radius: $border-radius;
&__placeholder {
width: calc(100% + (2 * $border-normal-width));
width: 100%;
height: 100%;
}