search for standard sites pub-search.waow.tech
search zig blog atproto

fix: horizontal scroll for tags on mobile

tags were wrapping into 4-5 rows on mobile, pushing results below
the fold. switch to single-row horizontal scroll on small screens
so results are immediately visible.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+17 -2
+17 -2
site/index.html
··· 756 756 vertical-align: middle; 757 757 } 758 758 759 - /* tags wrap better on mobile */ 760 - .tags-list, .platform-filter-list, .date-filter-list { 759 + /* tags: horizontal scroll on mobile instead of wrapping */ 760 + .tags-list { 761 + flex-wrap: nowrap; 762 + overflow-x: auto; 763 + -webkit-overflow-scrolling: touch; 764 + scrollbar-width: none; /* firefox */ 765 + gap: 0.5rem; 766 + padding-bottom: 2px; 767 + } 768 + 769 + .tags-list::-webkit-scrollbar { display: none; } 770 + 771 + .tags-list .tag, .tags-list input.tag-input { 772 + flex-shrink: 0; 773 + } 774 + 775 + .platform-filter-list, .date-filter-list { 761 776 gap: 0.5rem; 762 777 } 763 778