fix: batch mobile layout fixes (#1641)

This commit is contained in:
Yuhao
2023-11-28 20:05:19 +08:00
committed by GitHub
parent cf0ba794d7
commit 3c37fd37fa
11 changed files with 42 additions and 49 deletions

View File

@@ -97,14 +97,9 @@ const Apps: FC = () => {
value={currCategory}
onChange={setCurrCategory}
/>
<div
className='flex mt-6 pb-6 flex-col overflow-auto bg-gray-100 shrink-0 grow'
style={{
maxHeight: 'calc(100vh - 243px)',
}}
>
<div className='flex flex-1 mt-6 pb-6 flex-col overflow-auto bg-gray-100 shrink-0 grow'>
<nav
className={`${s.appList} grid content-start gap-4 px-12 shrink-0`}>
className={`${s.appList} grid content-start gap-4 px-6 sm:px-12 shrink-0`}>
{currList.map(app => (
<AppCard
key={app.app_id}