mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-08 04:00:14 -05:00
ea1bdca818
And make it difficult / encourage users to submit the ids instead of leaving them empty.
31 lines
614 B
SCSS
31 lines
614 B
SCSS
/* Used alongside floating labels */
|
|
|
|
.form__group {
|
|
background-color: inherit;
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
.form__group--horizontal {
|
|
background-color: inherit;
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
}
|
|
|
|
.form__group--short-horizontal {
|
|
background-color: inherit;
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
|
align-items: center;
|
|
}
|
|
|
|
.form__group--vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
background-color: inherit;
|
|
}
|