Fixed inconsistent subtitle text style in Custom Settings (#32712)

#32273
This commit is contained in:
Dante Catalfamo 2025-09-18 13:04:22 -04:00 committed by GitHub
parent 701b0daa89
commit 6393c284fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 15 deletions

View file

@ -0,0 +1 @@
- Fixed inconsistent subtitle text style in Custom Settings

View file

@ -202,17 +202,25 @@ const CustomSettings = ({
!!profileLabelsModalData?.labels_include_any?.length ||
!!profileLabelsModalData?.labels_exclude_any?.length;
const subTitle = (
<>
Create and upload configuration profiles to apply custom settings.{" "}
<CustomLink
newTab
text="Learn how"
url="https://fleetdm.com/learn-more-about/custom-os-settings"
/>
</>
);
return (
<div className={baseClass}>
<SectionHeader title="Custom settings" />
<p className={`${baseClass}__description`}>
Create and upload configuration profiles to apply custom settings.{" "}
<CustomLink
newTab
text="Learn how"
url="https://fleetdm.com/learn-more-about/custom-os-settings"
/>
</p>
<SectionHeader
title="Custom settings"
subTitle={subTitle}
alignLeftHeaderVertically
greySubtitle
/>
{!mdmEnabled ? (
<TurnOnMdmMessage
router={router}

View file

@ -1,10 +1,4 @@
.custom-settings {
&__description {
font-size: $x-small;
margin-bottom: $pad-large;
@include grey-text;
}
.upload-list {
&__list {
.list-item__label-count {