aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/comment-form/comment-form.module.scss
blob: a4de51e3c819f2cc00e2ec5628ed855b5a8f90c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.form {
  display: flex;
  flex-flow: column wrap;
  gap: var(--spacing-xs);

  > * {
    max-width: 45ch;
  }
}

.title {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: var(--spacing-sm);
}

.field {
  width: 100%;
}

.button {
  display: block;
  margin: var(--spacing-sm) auto 0;
}