fix: box-sizing border-box by default

This commit is contained in:
2025-11-08 20:26:40 -03:00
parent 7f9801defd
commit be0b730fb0

View File

@@ -7,6 +7,11 @@
--secondaryFont: 'Poppins', sans-serif;
}
html,
* {
box-sizing: border-box;
}
body {
background-color: var(--primary);
font-family: var(--primaryFont);