From 3bae6cf1e1e40c8f1434d64cdc4e99079856bc56 Mon Sep 17 00:00:00 2001 From: Fringg Date: Wed, 11 Mar 2026 01:38:58 +0300 Subject: [PATCH] fix: show nav labels from 2xl (1536px) instead of xl (1280px) Russian labels with 9 items overflow at xl breakpoint. Push text labels to 2xl where there is enough space for all languages. --- src/components/layout/AppShell/AppShell.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/layout/AppShell/AppShell.tsx b/src/components/layout/AppShell/AppShell.tsx index 4b168df..3fa97cb 100644 --- a/src/components/layout/AppShell/AppShell.tsx +++ b/src/components/layout/AppShell/AppShell.tsx @@ -332,7 +332,7 @@ export function AppShell({ children }: AppShellProps) { )} > - {item.label} + {item.label} ))} {referralEnabled && ( @@ -348,7 +348,7 @@ export function AppShell({ children }: AppShellProps) { )} > - {t('nav.referral')} + {t('nav.referral')} )} {giftEnabled && ( @@ -364,7 +364,7 @@ export function AppShell({ children }: AppShellProps) { )} > - {t('nav.gift')} + {t('nav.gift')} )} {isAdmin && ( @@ -382,7 +382,7 @@ export function AppShell({ children }: AppShellProps) { )} > - {t('admin.nav.title')} + {t('admin.nav.title')} )}