chore(website): improve header layout on mobile

This commit is contained in:
Elian Doran
2025-09-27 11:55:49 +03:00
parent 8117586548
commit 55c70b404c
2 changed files with 15 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ export function Header() {
{HEADER_LINKS.map(link => (
<a
href={link.url}
className={url === link.url && 'active'}
className={url === link.url ? "active" : ""}
target={link.external && "_blank"}
>{link.text}</a>
))}