From f06d5396ad7627af3c06ce8c58c4eda071d6e8d1 Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sat, 31 Jan 2026 22:35:24 -0300 Subject: [PATCH] style: add utility classes, apply borderbox to all elements --- src/styles.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/styles.scss b/src/styles.scss index b536290..4883d02 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -38,4 +38,18 @@ body { html, body { margin: 0 0; height: 100%; +} + +* { + box-sizing: border-box; +} + +// Utility classes + +.full-width { + width: 100%; +} + +.top-auto { + margin-top: auto; } \ No newline at end of file