style: add utility classes, apply borderbox to all elements

This commit is contained in:
2026-01-31 22:35:24 -03:00
parent 2e77ab3e40
commit f06d5396ad

View File

@@ -39,3 +39,17 @@ html, body {
margin: 0 0; margin: 0 0;
height: 100%; height: 100%;
} }
* {
box-sizing: border-box;
}
// Utility classes
.full-width {
width: 100%;
}
.top-auto {
margin-top: auto;
}