Fixed UI issue from previous accessability fixes.

This commit is contained in:
headpatsyou 2026-01-24 13:59:59 +00:00
parent 336f06f2dc
commit b241fafce4

View file

@ -104,6 +104,8 @@ p { font-size: 1rem; line-height: 1.6; color: var(--foreground); }
border-radius: 999px; border-radius: 999px;
cursor: pointer; cursor: pointer;
transition: background 150ms ease; transition: background 150ms ease;
white-space: nowrap;
font-size: 0.9rem;
} }
.lang-switcher-btn:hover, .lang-switcher-btn:hover,
.lang-switcher-btn:focus-visible { .lang-switcher-btn:focus-visible {
@ -294,6 +296,15 @@ p { font-size: 1rem; line-height: 1.6; color: var(--foreground); }
padding-right: 1rem; padding-right: 1rem;
} }
/* Header container - prevent flex wrapping */
.app-header .container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
gap: 1rem;
}
/* Hero */ /* Hero */
.hero { .hero {
padding: 3rem 0; padding: 3rem 0;
@ -539,6 +550,8 @@ p { font-size: 1rem; line-height: 1.6; color: var(--foreground); }
border-radius: 999px; border-radius: 999px;
background: transparent; background: transparent;
transition: background 150ms ease; transition: background 150ms ease;
white-space: nowrap;
font-size: 0.9rem;
} }
.lang-switcher a:hover, .lang-switcher a:hover,
.lang-switcher a:focus-visible { .lang-switcher a:focus-visible {