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

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