summaryrefslogtreecommitdiff
path: root/scss/modules/form.scss
blob: ccae48c8818155df949bd546cb1a219dd56f81f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:is(input, label, button) {
  display: block;
}

input {
  width: var(--width-prose);
  font-size: var(--font-size-1);
}

:is(input + label, :is(button, [type=submit])) {
  margin-block-start: var(--margin-block-md);
}

:is(button, [type=submit]) {
  width: var(--grid-column-width);
  margin-inline-start: auto;
}