0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Updated comments spinner style for light mode sites (#21734)

REF
https://linear.app/ghost/issue/PLG-272/look-into-potential-spinner-regression
This commit is contained in:
Sanne de Vries 2024-11-27 10:55:40 +01:00 committed by GitHub
parent 97591cba5e
commit 52d15cf955
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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-neutral-900/90 dark:fill-white/60" />
<SpinnerIcon className="mb-6 h-12 w-12 fill-neutral-300/80 dark:fill-white/60" />
</div>
);
}