TinyTapeout / tinytapeout_www

Tiny Tapeout Website
https://tinytapeout.com
6 stars 23 forks source link

h3 is bigger than h2 #107

Closed mattvenn closed 1 month ago

mattvenn commented 2 months ago

make h3 smaller than h2.

urish commented 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):

image

This is what they'd look like if we removed the override, and used the default sizes:

image

Should I remove our overrides ?

mattvenn commented 1 month ago

yeah remove them I think

urish commented 1 month ago

Done