diff --git a/src/components/dialogs/nuxs/NeueTypography.tsx b/src/components/dialogs/nuxs/NeueTypography.tsx index b4cdb8c035..fa3936d259 100644 --- a/src/components/dialogs/nuxs/NeueTypography.tsx +++ b/src/components/dialogs/nuxs/NeueTypography.tsx @@ -49,19 +49,18 @@ export function NeueTypography() { - Introducing new font settings ✨ + New font settings ✨ - + - To ensure the best possible experience, we're introducing a new - theme font, along with adjustable font sizing settings. + We're introducing a new theme font, along with adjustable font + sizing. - Defaults are shown below. You can edit these in your Appearance - Settings later. + You can adjust these in your Appearance Settings later. diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 510a5d9edc..69e04f4af1 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -206,9 +206,17 @@ export function AppearanceToggleButtonGroup({ const t = useTheme() return ( - - - {title} + + + + {title} + + {description && ( + + {description} + + )} {items.map(item => ( @@ -220,12 +228,6 @@ export function AppearanceToggleButtonGroup({ ))} - - {description && ( - - {description} - - )} ) }