🐛 fix: enable vertical scrolling for topic list on mobile (#12157)

Replace `overflow: 'hidden'` with `overflowX: 'hidden', overflowY: 'auto'`
on the topic list container so users can scroll through topics that exceed
the viewport height on mobile devices.

Closes lobehub/lobe-chat#12029
This commit is contained in:
Varun Chawla
2026-02-08 07:16:51 -08:00
committed by GitHub
parent 9fa6253406
commit bd4e253d1b

View File

@@ -12,7 +12,7 @@ const Topic = () => {
<TopicSearchBar />
<Flexbox
height={'100%'}
style={{ marginInline: -8, overflow: 'hidden', position: 'relative' }}
style={{ marginInline: -8, overflowX: 'hidden', overflowY: 'auto', position: 'relative' }}
width={'calc(100% + 16px)'}
>
<TopicListContent />