Files
Stephen ZhouGitHubautofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
a84c2d36a3 style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

24 lines
535 B
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: 1280px) {
.appList {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
@media (min-width: 640px) and (max-width: 1279px) {
.appList {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}