mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-22 11:16:01 +03:00
🎨Changed hover color of ExitButton (#21396)
no issue - changed the hover color of the settings exit button from black to grey-900 - keeps the X visible when hovering over it (before it was the same color as the background)
This commit is contained in:
parent
1c95acfd57
commit
788a45ec86
@ -9,7 +9,7 @@ const ExitSettingsButton: React.FC = () => {
|
||||
};
|
||||
|
||||
return (
|
||||
<Button className='text-grey-700 hover:!text-black' data-testid="exit-settings" icon='close' id="done-button" label='' link={true} title='Close (ESC)' onClick={() => confirmIfDirty(isDirty, navigateAway)} />
|
||||
<Button className='text-grey-700 hover:!text-grey-900' data-testid="exit-settings" icon='close' id="done-button" label='' link={true} title='Close (ESC)' onClick={() => confirmIfDirty(isDirty, navigateAway)} />
|
||||
);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user