mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Fixed spinner being invisible in light mode (#21727)
REF https://linear.app/ghost/issue/PLG-272/look-into-potential-spinner-regression
This commit is contained in:
parent
5865bb576f
commit
6c064b73e4
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import {ReactComponent as SpinnerIcon} from '../../images/icons/spinner.svg';
|
|||
function Loading() {
|
||||
return (
|
||||
<div className="flex h-32 w-full items-center justify-center" data-testid="loading">
|
||||
<SpinnerIcon className="mb-6 h-12 w-12 fill-white/90 dark:fill-white/60" />
|
||||
<SpinnerIcon className="mb-6 h-12 w-12 fill-neutral-900/90 dark:fill-white/60" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue