26 lines
290 B
SCSS
26 lines
290 B
SCSS
.root {
|
|
width: 100%;
|
|
}
|
|
|
|
.fields {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.selectField {
|
|
display: grid;
|
|
gap: 6px;
|
|
}
|
|
|
|
.selectLabel {
|
|
@include typography.font-body-14(500);
|
|
color: variables.$text-primary;
|
|
}
|