fix UI styling for custom settings page (#10016)

This commit is contained in:
Gabriel Hernandez 2023-02-22 18:56:49 +00:00 committed by GitHub
parent ba34351f4b
commit ba38696ada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 0 deletions

View File

@ -23,6 +23,9 @@ const MacOSSettings = ({ params }: IMacOSSettingsProps) => {
return (
<div className={baseClass}>
<p className={`${baseClass}__description`}>
Remotely enforce settings on macOS hosts assigned to this team.
</p>
<SideNav
className={`${baseClass}__side-nav`}
navItems={MAC_OS_SETTINGS_NAV_ITEMS}

View File

@ -0,0 +1,14 @@
.mac-os-settings {
font-size: $x-small;
&__description {
margin: $pad-xxlarge 0;
}
&__side-nav {
.side-nav__nav-list {
top: 0
}
}
}

View File

@ -1,6 +1,7 @@
.custom-settings {
h2 {
margin-top: 0;
padding-bottom: $pad-small;
font-size: $medium;
font-weight: $regular;