You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
259B

  1. /*==========*/
  2. /* The Grid */
  3. /*==========*/
  4. .grid {
  5. display: grid;
  6. grid-gap: 1rem;
  7. --minimum: 20ch;
  8. }
  9. @supports (width: min(var(--minumum), 100%)) {
  10. .grid {
  11. grid-template-columns: repeat(auto-fit, minmax(min(var(--minimum), 100%), 1fr));
  12. }
  13. }