mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
cdf43a79bd
This if the 2nd PR as part of the of the Align components in Fleet UI with design system in Figma #539 These changes **refactor the spacing and font sizes** used by the frontend. - Change the scss variables in `padding.scss` and `fonts.scss`. - Replace custom styles with the new variables throughout all stylesheets.
27 lines
396 B
SCSS
27 lines
396 B
SCSS
.osquery-options-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
width: 100%;
|
|
|
|
&__btn-wrap {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
|
|
p {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
}
|
|
}
|
|
|
|
&__text-editor-wrapper {
|
|
width: 100%;
|
|
margin-bottom: $pad-medium;
|
|
}
|
|
|
|
.yaml-ace__label {
|
|
min-height: 0;
|
|
}
|
|
}
|