mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
The goal of this PR is to update the styles of the LabelForm component. Also include global style changes for form components (FormField, LabelForm, and others).
34 lines
453 B
SCSS
34 lines
453 B
SCSS
.label-form {
|
|
|
|
&__label-title,
|
|
&__label-description {
|
|
width: 100%;
|
|
}
|
|
|
|
&__button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
.query-form__run-query-btn,
|
|
.query-form__stop-query-btn {
|
|
margin-left: $pad-xsmall;
|
|
}
|
|
|
|
.kolide-timer {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
&__cancel-btn {
|
|
margin-right: 14px;
|
|
}
|
|
|
|
&__save-btn {
|
|
padding: 7px 28px;
|
|
}
|
|
|
|
&__text-editor-wrapper {
|
|
margin: 24px 0;
|
|
}
|
|
}
|
|
|