Skip to content

Commit

Permalink
BSD fixes #285: If a flipped card is tabbed to, allow the transition …
Browse files Browse the repository at this point in the history
…to occur as well.
  • Loading branch information
mattsqd committed Sep 4, 2024
1 parent 551fbc4 commit 38310cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stories/components/cards/cards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
}
}

&:hover &__face--front {
&:hover &__face--front, &:focus-within &__face--front {
transform: rotateY(-180deg);
}

&:hover &__face--back {
&:hover &__face--back, &:focus-within &__face--back {
transform: rotateY(0deg);
}

Expand Down

0 comments on commit 38310cf

Please sign in to comment.