bastislack / highline-freestyle

Webapp for Highline Freestyle
GNU General Public License v3.0
10 stars 9 forks source link

Inconsistent size of h3 heading on TrickDetails.js #248

Closed JulianDietzel closed 1 year ago

JulianDietzel commented 1 year ago

On the TrickDetails page, the h3 heading has an incredibly small font size. This is not the case on other pages. I don't know what causes this, but if it is happening intentionally I believe an unmodified h6 heading should be used instead of scaling down the h3 one.

Headers h1 to h6 when displayed on the TrickDetails.js page: Screenshot from 2023-03-17 15-22-45

bastislack commented 1 year ago

Looks like this entry in index.css is to blame:

.trick-details h3 {
  margin: 7px auto;
  font-size: 0.8em;
}

Using h6 definitely makes more sense :D