mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
* Query Edit/Run page renders based on user role * Original UI for global admin/ global maintainer * New UI for global observer / team maintainer / team observer * New create new query UI for team maintainer * Styling matches Figma * Tests modified accordingly Styling Closes #859 Co-authored by: Sarah Gillespie @gillespi314 Tests co-authored by: @ghernandez345
27 lines
481 B
SCSS
27 lines
481 B
SCSS
.form-field {
|
|
margin-bottom: $pad-large;
|
|
|
|
&__label {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
color: $core-fleet-black;
|
|
display: block;
|
|
margin-bottom: $pad-xsmall;
|
|
|
|
&--error {
|
|
color: $ui-error;
|
|
}
|
|
}
|
|
|
|
&__hint {
|
|
font-weight: $regular;
|
|
color: $core-fleet-blue;
|
|
|
|
code {
|
|
color: $core-vibrant-blue;
|
|
background-color: $ui-light-grey;
|
|
padding: $pad-xxsmall;
|
|
font-family: "SourceCodePro", $monospace;
|
|
}
|
|
}
|
|
}
|