Fix overlapping text on mobile

This commit is contained in:
Jake Runyan 2026-03-04 12:19:58 -08:00
parent 757a002188
commit 157298daaa

View File

@ -54,12 +54,15 @@
.navbar-center h1 {
color: var(--color-text-nav);
font-family: var(--font-heading);
font-size: 20px;
font-size: clamp(11px, 3.2vw, 20px);
font-weight: 400;
letter-spacing: 0.12em;
text-transform: uppercase;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: calc(100vw - 160px);
pointer-events: auto;
}