mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Fixed dark mode separator in Access settings (#21995)
The separator in Access settings wasn't showing in the right colour in dark mode. This change fixes that. No issue.
This commit is contained in:
parent
459fe30ed7
commit
1c4d7b8cd7
1 changed files with 2 additions and 2 deletions
|
@ -122,7 +122,7 @@ const Access: React.FC<{ keywords: string[] }> = ({keywords}) => {
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<Separator />
|
||||
<Separator className="border-grey-200 dark:border-grey-900" />
|
||||
<div className="flex flex-col content-center items-center gap-4 md:flex-row">
|
||||
<div className="w-full min-w-[160px] max-w-none md:w-2/3 md:max-w-[320px]">Who should have access to new posts?</div>
|
||||
<div className="w-full md:flex-1">
|
||||
|
@ -154,7 +154,7 @@ const Access: React.FC<{ keywords: string[] }> = ({keywords}) => {
|
|||
</div>
|
||||
</div>
|
||||
)}
|
||||
<Separator />
|
||||
<Separator className="border-grey-200 dark:border-grey-900" />
|
||||
<div className="flex flex-col content-center items-center gap-4 md:flex-row">
|
||||
<div className="w-full min-w-[160px] max-w-none md:w-2/3 md:max-w-[320px]">Who can comment on posts?</div>
|
||||
<div className="w-full md:flex-1">
|
||||
|
|
Loading…
Add table
Reference in a new issue