fleet/frontend/pages/labels/components/LabelForm/_styles.scss
Gabriel Hernandez 2fc4e520b8
add ability to create manual labels (#18303)
relates to #17031

Adds functionality to create manual labels in fleet.

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
See [Changes
files](https://fleetdm.com/docs/contributing/committing-changes#changes-files)
for more information.
- [x] Added/updated tests
- [x] M0anual QA for all new/changed functionality

---------

Co-authored-by: Martin Angers <martin.n.angers@gmail.com>
2024-04-16 17:22:08 +01:00

29 lines
469 B
SCSS

.label-form {
&__label-title,
&__label-description {
width: 100%;
resize: vertical;
}
&__label-platform {
font-size: $x-small;
font-weight: $regular;
color: $core-fleet-black;
padding-bottom: $pad-large;
p {
padding-bottom: $pad-small;
margin-top: 0;
margin-bottom: 0;
}
.title {
font-weight: $bold;
}
.help-text {
color: $core-fleet-blue;
padding-top: $pad-small;
}
}
}