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
257B

  1. /*===========*/
  2. /* The Stack */
  3. /*===========*/
  4. .stack {
  5. --space: var(--s1);
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: flex-start;
  9. }
  10. .stack > * {
  11. margin-top: 0;
  12. margin-bottom: 0;
  13. }
  14. .stack > * + * {
  15. margin-top: var(--space);
  16. }