diff --git a/src/OutfitPreview.js b/src/OutfitPreview.js
index 36b613d..faa70db 100644
--- a/src/OutfitPreview.js
+++ b/src/OutfitPreview.js
@@ -120,46 +120,54 @@ function OutfitPreview({ outfitState }) {
)}
-
- {
- if (!downloadImageUrl) {
- toast({
- title:
- "Just a second, try again when the image is done loading!",
- });
- }
- }}
- variant="unstyled"
- color="gray.50"
- d="flex"
- alignItems="center"
- justifyContent="center"
- opacity="0"
- transition="all 0.2s"
- _hover={{
- backgroundColor: "gray.600",
- }}
- _focus={{
- opacity: 1,
- backgroundColor: "gray.600",
- }}
- _groupHover={{
- opacity: 1,
- }}
- pos="absolute"
- right="1"
- top="1"
- />
-
+
+
+ {
+ if (!downloadImageUrl) {
+ toast({
+ title:
+ "Just a second, try again when the image is done loading!",
+ });
+ }
+ }}
+ variant="unstyled"
+ backgroundColor="gray.600"
+ color="gray.50"
+ d="flex"
+ alignItems="center"
+ justifyContent="center"
+ opacity="0"
+ transition="all 0.2s"
+ _groupHover={{
+ opacity: 1,
+ }}
+ _focus={{
+ opacity: 1,
+ backgroundColor: "gray.500",
+ }}
+ _hover={{
+ backgroundColor: "gray.500",
+ }}
+ outline="initial"
+ />
+
+
);
}