mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 01:43:39 +08:00
b6b0d68576
- removes unused css code - improves password control sizing - adds more spacing between collection items - correct a typo in collection class --------- Co-authored-by: chapoi <101828855+chapoi@users.noreply.github.com>
37 lines
693 B
SCSS
37 lines
693 B
SCSS
.form-kit__row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-right: calc(-0.5 * var(--form-kit-gutter-x));
|
|
margin-left: calc(-0.5 * var(--form-kit-gutter-x));
|
|
row-gap: calc(var(--form-kit-gutter-y) + 1.75em);
|
|
padding-top: 1.75em;
|
|
|
|
> * {
|
|
flex-shrink: 0;
|
|
|
|
padding-right: calc(var(--form-kit-gutter-x) * 0.5);
|
|
padding-left: calc(var(--form-kit-gutter-x) * 0.5);
|
|
}
|
|
|
|
> *:not(.col-*) {
|
|
width: 100%;
|
|
}
|
|
|
|
.form-kit__container-content {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.form-kit__col:not(:has(.form-kit__button)) {
|
|
position: relative;
|
|
}
|
|
|
|
.form-kit__button {
|
|
height: 2em;
|
|
}
|
|
|
|
.form-kit__container-title {
|
|
position: absolute;
|
|
top: -1.75em;
|
|
}
|
|
}
|