mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-10 06:18:59 +08:00
fix: explore app list grid style conflict and remove useless style (#725)
This commit is contained in:
parent
654985177f
commit
17c3a63e50
@ -101,7 +101,7 @@ const Apps: FC = () => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<nav
|
<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 => (
|
{currList.map(app => (
|
||||||
<AppCard
|
<AppCard
|
||||||
key={app.app_id}
|
key={app.app_id}
|
||||||
|
@ -6,6 +6,10 @@
|
|||||||
text-fill-color: transparent;
|
text-fill-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.appList {
|
||||||
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
||||||
|
}
|
||||||
|
|
||||||
@media (min-width: 1624px) {
|
@media (min-width: 1624px) {
|
||||||
.appList {
|
.appList {
|
||||||
grid-template-columns: repeat(4, minmax(0, 1fr))
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user