0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed dark mode separator in Analytics settings (#21996)

The separator in Analytics settings wasn't showing in the right colour
in dark mode. This change fixes that.

Fixes
https://linear.app/ghost/issue/DES-1077/analytics-separators-have-wrong-colour-in-dark-mode
This commit is contained in:
Daniël van der Winden 2025-01-13 15:47:38 +01:00 committed by GitHub
parent 1c4d7b8cd7
commit 83d7691fe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,7 +59,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
handleToggleChange('email_track_opens', e);
}}
/>
<Separator />
<Separator className="border-grey-200 dark:border-grey-900" />
<Toggle
checked={trackEmailClicks}
direction='rtl'
@ -70,7 +70,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
handleToggleChange('email_track_clicks', e);
}}
/>
<Separator />
<Separator className="border-grey-200 dark:border-grey-900" />
<Toggle
checked={trackMemberSources}
direction='rtl'
@ -81,7 +81,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
handleToggleChange('members_track_sources', e);
}}
/>
<Separator />
<Separator className="border-grey-200 dark:border-grey-900" />
<Toggle
checked={outboundLinkTagging}
direction='rtl'