aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/forms/fieldset/fieldset.module.scss
blob: ed545a7eeff7091545cf0b33338138a0b6cd425f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.fieldset {
  display: flex;
  gap: var(--spacing-2xs);
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;

  &--inline {
    flex-flow: row wrap;
    align-items: center;
  }

  &--stack {
    flex-flow: column wrap;
  }
}