consistent themed image loading indicator background color

This commit is contained in:
Josh Hawkins 2024-10-01 07:04:36 -05:00
parent a894847ff0
commit fedc3156e8

View File

@ -14,7 +14,7 @@ export default function ImageLoadingIndicator({
}
return isSafari ? (
<div className={cn("pointer-events-none bg-gray-300", className)} />
<div className={cn("pointer-events-none bg-background_alt", className)} />
) : (
<Skeleton className={cn("pointer-events-none", className)} />
);