mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 18:07:56 +00:00
# Follow up for #9349 - Address remaining small styling, directory organization/naming issues, other than masthead styles, which are addressed separately # Checklist for submitter - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
54 lines
860 B
SCSS
54 lines
860 B
SCSS
.manage-controls-page {
|
|
&__header-wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 38px;
|
|
|
|
.button-wrap {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
min-width: 266px;
|
|
}
|
|
}
|
|
|
|
&__header {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.form-field {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
margin-right: $pad-large;
|
|
}
|
|
|
|
&__title {
|
|
font-size: $large;
|
|
}
|
|
|
|
&__description {
|
|
margin: 0;
|
|
margin-bottom: $pad-large;
|
|
max-width: 75%;
|
|
@media (min-width: $break-990) {
|
|
max-width: none;
|
|
}
|
|
|
|
h2 {
|
|
text-transform: uppercase;
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $small;
|
|
}
|
|
|
|
p {
|
|
color: $ui-fleet-black-75;
|
|
margin: 0;
|
|
font-size: $x-small;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
}
|