added more structure, sass, and page routers

This commit is contained in:
JBB0807 2025-04-14 14:25:41 -07:00
parent c774dff9e0
commit bda7b7224a
23 changed files with 767 additions and 158 deletions

21
src/scss/base/_reset.scss Normal file
View file

@ -0,0 +1,21 @@
// Resets
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
}
img {
max-width: 100%;
height: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}