mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
29 lines
498 B
CSS
29 lines
498 B
CSS
|
form .field {
|
||
|
display: flex;
|
||
|
gap: var(--padding-normal);
|
||
|
margin-bottom: var(--padding-normal);
|
||
|
}
|
||
|
|
||
|
form .form--two_column {
|
||
|
display: grid;
|
||
|
grid: inherit;
|
||
|
grid-template-columns: 1 / -1;
|
||
|
gap: var(--padding-normal);
|
||
|
}
|
||
|
|
||
|
form .form--two_column > .field, form .form--two_column > li {
|
||
|
display: grid;
|
||
|
grid-template-columns: auto 1fr;
|
||
|
gap: var(--padding-normal);
|
||
|
}
|
||
|
|
||
|
form .field > .with_error {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
form label {
|
||
|
display: flex;
|
||
|
flex: 1 0 auto;
|
||
|
align-self: center;
|
||
|
}
|