您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
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. }