made a separate reset css sheet

This commit is contained in:
Pagwin 2025-07-10 23:12:00 -04:00
parent f01a621d36
commit 36147db801
2 changed files with 6 additions and 1 deletions

View file

@ -1,4 +1,4 @@
@layer pre-load, baseline, overload-1, print;
@layer pre-load, reset, baseline, overload-1, print;
/*
* saving this for when doing a table of contents, position: sticky isn't good enough
@ -13,6 +13,8 @@
}
* */
@import url("/static/css/reset.css") layer("reset")
@layer overload-1{
dt{
font-weight:normal;

3
static/css/reset.css Normal file
View file

@ -0,0 +1,3 @@
* {
box-sizing: border-box;
}