fix(styles): shrank header on larger views

prevent line break/overflow on long words like "Professional" and "Birkenstock" on larger displays
pull/7/head
steven 2021-10-02 10:32:27 -04:00
parent fbc7ef18fa
commit a23f329276
1 changed files with 5 additions and 5 deletions

View File

@ -143,11 +143,11 @@ h6 { font-size: 1.4rem; line-height: 1.6; letter-spacing: 0; }
/* Larger than phablet */
@media (min-width: 550px) {
h1 { font-size: 4.0rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 3.0rem; }
h4 { font-size: 2.8rem; }
h5 { font-size: 2.4rem; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2.2rem; }
h5 { font-size: 2.0rem; }
h6 { font-size: 1.5rem; }
}