make outfits page links, to classic DTI
Mostly just getting the link style figured out! But getting them actually working is coming soon :)
This commit is contained in:
parent
71bb593974
commit
f36d6831d0
1 changed files with 8 additions and 0 deletions
|
@ -112,6 +112,14 @@ function OutfitCard({ outfit }) {
|
||||||
width="calc(150px + 2em)"
|
width="calc(150px + 2em)"
|
||||||
backgroundColor={brightBackground}
|
backgroundColor={brightBackground}
|
||||||
transition="all 0.2s"
|
transition="all 0.2s"
|
||||||
|
as="a"
|
||||||
|
href={`https://impress.openneo.net/outfits/${outfit.id}`}
|
||||||
|
_hover={{ transform: `scale(1.05)` }}
|
||||||
|
_focus={{
|
||||||
|
transform: `scale(1.05)`,
|
||||||
|
boxShadow: "outline",
|
||||||
|
outline: "none",
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<Box
|
<Box
|
||||||
as="img"
|
as="img"
|
||||||
|
|
Loading…
Reference in a new issue