style.module.css 658 B

1234567891011121314151617181920212223242526272829
  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. .appList {
  9. grid-template-columns: repeat(1, minmax(0, 1fr))
  10. }
  11. @media (min-width: 1624px) {
  12. .appList {
  13. grid-template-columns: repeat(4, minmax(0, 1fr))
  14. }
  15. }
  16. @media (min-width: 1300px) and (max-width: 1624px) {
  17. .appList {
  18. grid-template-columns: repeat(3, minmax(0, 1fr))
  19. }
  20. }
  21. @media (min-width: 1025px) and (max-width: 1300px) {
  22. .appList {
  23. grid-template-columns: repeat(2, minmax(0, 1fr))
  24. }
  25. }