mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
20 lines
309 B
SCSS
20 lines
309 B
SCSS
.fieldset {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
color: var(--color-text-primary);
|
|
font-size: 15px;
|
|
}
|
|
|
|
.fieldsWrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 8px;
|
|
|
|
&[data-layout='horizontal'] {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
column-gap: 24px;
|
|
}
|
|
}
|