fix image covers being centered

This commit is contained in:
SethBurkart123
2024-05-01 12:15:17 +10:00
parent 8e8821bb32
commit 1fb2cf512a
+1 -1
View File
@@ -97,7 +97,7 @@ export const ThemeCover: React.FC<ThemeCoverProps> = ({
<img <img
src={(typeof theme.coverImage) == 'string' ? theme.coverImage as string : URL.createObjectURL(theme.coverImage as Blob)} src={(typeof theme.coverImage) == 'string' ? theme.coverImage as string : URL.createObjectURL(theme.coverImage as Blob)}
alt={theme.name} alt={theme.name}
className="absolute inset-0 z-0 object-cover" className="absolute inset-0 z-0 object-cover w-full h-full"
/> />
} }
{ {