mirror of
https://github.com/langgenius/dify.git
synced 2026-04-10 19:47:53 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
32 lines
702 B
CSS
32 lines
702 B
CSS
@reference "../../../styles/globals.css";
|
|
|
|
.textGradient {
|
|
background: linear-gradient(to right, rgba(16, 74, 225, 1) 0, rgba(0, 152, 238, 1) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
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))
|
|
}
|
|
}
|
|
|
|
@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))
|
|
}
|
|
}
|