Closed mattvenn closed 1 month ago
The original sizes of H1/H2 (coming from the hugo theme we're using) are:
h1 {
font-size: 3.25rem;
}
h2 {
font-size: 2.5rem;
line-height: 110% !important;
margin: 2.5rem 0 1.5rem 0;
}
However, we have our own tinytapeout-theme.css file that overrides them to be smaller:
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.3em;
}
This is what things look like right now (with our theme overrides):
This is what they'd look like if we removed the override, and used the default sizes:
Should I remove our overrides ?
yeah remove them I think
Done
make h3 smaller than h2.