From 5427b71651b4560e09aa511f49f36d654df390ab Mon Sep 17 00:00:00 2001 From: pavlov346346-source Date: Sat, 12 Sep 2026 18:20:41 +0300 Subject: [PATCH] fix: wrap catalog category pills on mobile instead of horizontal scroll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @media(max-width:720px) forced .sun-catalog-top-toolbar .cats into flex-wrap:nowrap + overflow:auto, turning the colored category pills (Боксы/Премиум/Напитки/Дополнения/Посуда...) into a horizontally scrolling strip that runs off the right edge of the screen instead of wrapping. Co-Authored-By: Claude Sonnet 5 --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 0459fb6..2c83b0c 100644 --- a/public/index.html +++ b/public/index.html @@ -6506,7 +6506,7 @@ window.SunQR = { @media(max-width:720px){ #sunOrderCards{grid-template-columns:repeat(auto-fill,minmax(190px,1fr))!important} .sun-order-card-top{grid-template-columns:54px minmax(0,1fr)!important} - #new .sun-catalog-top-toolbar .cats{flex-wrap:nowrap;overflow:auto;width:100%;padding-bottom:2px!important} + #new .sun-catalog-top-toolbar .cats{flex-wrap:wrap!important;overflow:visible;width:100%;padding-bottom:2px!important} #new .sun-catalog-top-toolbar .cats button{flex:0 0 auto!important} }