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.

20 lines
293B

  1. /*=============*/
  2. /* The Cluster */
  3. /*=============*/
  4. .cluster {
  5. --space: var(--s0);
  6. }
  7. .cluster > * {
  8. display: flex;
  9. flex-wrap: wrap;
  10. justify-content: flex-start;
  11. align-items: center;
  12. margin: calc(var(--space) / 2 * -1);
  13. }
  14. .cluster > * > * {
  15. margin: calc(var(--space) / 2);
  16. }