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.

22 lines
419B

  1. /*==============*/
  2. /* The Switcher */
  3. /*==============*/
  4. .switcher > * {
  5. --space: var(--s1);
  6. display: flex;
  7. flex-wrap: wrap;
  8. margin: calc((var(--space) / 2) * -1);
  9. }
  10. .switcher > * > * {
  11. flex-grow: 1;
  12. flex-basis: calc((var(--measure) - (100% - var(--space))) * 999);
  13. margin: calc(var(--space) / 2);
  14. }
  15. .switcher > * > :nth-last-child(n+5),
  16. .switcher > * > :nth-last-child(n+5) ~ * {
  17. flex-basis: 100%
  18. }