fixed clamp

This commit is contained in:
rawleyIfowler
2022-04-16 13:14:18 -05:00
parent bae62cf86c
commit 8c173c1707

View File

@@ -41,14 +41,14 @@ h1 {
} }
h2 { h2 {
font-size: (1.6em, 1.6em, 1.8em); font-size: clamp(1.6em, 1.6em, 1.8em);
font-weight: 700; font-weight: 700;
margin-bottom: 0; margin-bottom: 0;
} }
h3 { h3 {
font-size: (1.3em, 1.4em, 1.6em); font-size: clamp(1.3em, 1.4em, 1.6em);
font-weight: 600; font-weight: 700;
margin-bottom: 6px; margin-bottom: 6px;
} }