tweak download button styles

This commit is contained in:
Matt Dunn-Rankin 2020-04-25 02:32:41 -07:00
parent e9a15857c1
commit 2d84f2295b

View file

@ -120,10 +120,18 @@ function OutfitPreview({ outfitState }) {
</FullScreenCenter>
</Delay>
)}
<Tooltip label="Download" placement="left" showDelay={200}>
<Box
// Bottom-right in small screens, top-right on large screens
pos="absolute"
right="2"
bottom={{ base: "2", lg: "auto" }}
top={{ base: "auto", lg: "2" }}
>
<Tooltip label="Download" placement="left">
<IconButton
icon="download"
aria-label="Download"
isRound
as="a"
// eslint-disable-next-line no-script-url
href={downloadImageUrl || "javascript:void 0"}
@ -139,27 +147,27 @@ function OutfitPreview({ outfitState }) {
}
}}
variant="unstyled"
backgroundColor="gray.600"
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"
_focus={{
opacity: 1,
backgroundColor: "gray.500",
}}
_hover={{
backgroundColor: "gray.500",
}}
outline="initial"
/>
</Tooltip>
</Box>
</PseudoBox>
);
}