fix!: Toggle use color minimalist

This commit is contained in:
DarioEsp
2022-07-24 00:55:46 -04:00
parent 0b7ea6015b
commit c1719ebe70
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -6,6 +6,7 @@ import CustomLink from "@/common/link";
const SVGCard = (props: SVGCardProps) => {
const bg = useColorModeValue("bg.light", "bg.dark");
const color = useColorModeValue("rgb(0,0,0, .1)", "rgb(255,255,255, .1)");
return (
<Tap>
<CustomLink href={`/svg/${props.id}`}>
@@ -17,8 +18,7 @@ const SVGCard = (props: SVGCardProps) => {
borderWidth="1px"
mb="2"
_hover={{
/* shadow: "md", */
border:"1px solid rgb(0,0,0, .1)",
border:`1px solid ${color}`,
transform: "scale(0.98)",
}}
transition="all 0.2s" >