fix: explore app list grid style conflict and remove useless style (#725)

This commit is contained in:
Joel 2023-08-03 09:51:00 +08:00 committed by GitHub
parent 654985177f
commit 17c3a63e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,7 @@ const Apps: FC = () => {
}}
>
<nav
className={`${s.appList} grid content-start grid-cols-1 gap-4 px-12 pb-10grow shrink-0`}>
className={`${s.appList} grid content-start gap-4 px-12 shrink-0`}>
{currList.map(app => (
<AppCard
key={app.app_id}

View File

@ -6,6 +6,10 @@
text-fill-color: transparent;
}
.appList {
grid-template-columns: repeat(1, minmax(0, 1fr))
}
@media (min-width: 1624px) {
.appList {
grid-template-columns: repeat(4, minmax(0, 1fr))