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:
parent
1c4d7b8cd7
commit
83d7691fe9
1 changed files with 3 additions and 3 deletions
|
@ -59,7 +59,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
|
||||||
handleToggleChange('email_track_opens', e);
|
handleToggleChange('email_track_opens', e);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Separator />
|
<Separator className="border-grey-200 dark:border-grey-900" />
|
||||||
<Toggle
|
<Toggle
|
||||||
checked={trackEmailClicks}
|
checked={trackEmailClicks}
|
||||||
direction='rtl'
|
direction='rtl'
|
||||||
|
@ -70,7 +70,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
|
||||||
handleToggleChange('email_track_clicks', e);
|
handleToggleChange('email_track_clicks', e);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Separator />
|
<Separator className="border-grey-200 dark:border-grey-900" />
|
||||||
<Toggle
|
<Toggle
|
||||||
checked={trackMemberSources}
|
checked={trackMemberSources}
|
||||||
direction='rtl'
|
direction='rtl'
|
||||||
|
@ -81,7 +81,7 @@ const Analytics: React.FC<{ keywords: string[] }> = ({keywords}) => {
|
||||||
handleToggleChange('members_track_sources', e);
|
handleToggleChange('members_track_sources', e);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Separator />
|
<Separator className="border-grey-200 dark:border-grey-900" />
|
||||||
<Toggle
|
<Toggle
|
||||||
checked={outboundLinkTagging}
|
checked={outboundLinkTagging}
|
||||||
direction='rtl'
|
direction='rtl'
|
||||||
|
|
Loading…
Add table
Reference in a new issue