Files
UNIT3D-Community-Edition/resources/sass/components/form/_form-group.scss
T
Roardom ea1bdca818 update: store null for metadata id if they do not exist
And make it difficult / encourage users to submit the ids instead of leaving them empty.
2025-03-25 23:19:10 +00:00

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;
}