mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05: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
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ const ExitSettingsButton: React.FC = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
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 a new issue