mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 02:46:52 +08:00
17 lines
352 B
CSS
17 lines
352 B
CSS
@media (min-width: 1624px) {
|
|
.appList {
|
|
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1300px) and (max-width: 1624px) {
|
|
.appList {
|
|
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1025px) and (max-width: 1300px) {
|
|
.appList {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
}
|
|
} |