mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-07 01:56:53 +00:00
feat(ui): improve mobile responsive layouts
This commit is contained in:
@@ -27,9 +27,9 @@ export function FAQPanel() {
|
||||
loading={loading}
|
||||
empty={!list.length}
|
||||
emptyMessage={t('No FAQ entries available')}
|
||||
height='h-80'
|
||||
height='h-64 sm:h-80'
|
||||
>
|
||||
<ScrollArea className='h-80'>
|
||||
<ScrollArea className='h-64 sm:h-80'>
|
||||
<Accordion type='single' collapsible className='w-full'>
|
||||
{list.map((item: FAQItem, idx: number) => {
|
||||
const key = item.id ?? `faq-${idx}`
|
||||
|
||||
Reference in New Issue
Block a user