style.module.css 593 B

12345678910111213141516171819202122232425
  1. .textGradient {
  2. background: linear-gradient(to right, rgba(16, 74, 225, 1) 0, rgba(0, 152, 238, 1) 100%);
  3. -webkit-background-clip: text;
  4. -webkit-text-fill-color: transparent;
  5. background-clip: text;
  6. text-fill-color: transparent;
  7. }
  8. @media (min-width: 1624px) {
  9. .appList {
  10. grid-template-columns: repeat(4, minmax(0, 1fr))
  11. }
  12. }
  13. @media (min-width: 1300px) and (max-width: 1624px) {
  14. .appList {
  15. grid-template-columns: repeat(3, minmax(0, 1fr))
  16. }
  17. }
  18. @media (min-width: 1025px) and (max-width: 1300px) {
  19. .appList {
  20. grid-template-columns: repeat(2, minmax(0, 1fr))
  21. }
  22. }