Skip to content

Commit

Permalink
add border selected in carousel
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskolodny committed Nov 29, 2024
1 parent b9f4e35 commit 5fbaf60
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/advent-calendar-2024/pages/claim-your-gift.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,11 @@ const ClaimYourGift = () => {
<Touchable
key={key}
style={{
border: `1px solid ${skinVars.colors.border}`,
border: `1px solid ${
key === selectedIllustrationKey
? skinVars.colors.borderSelected
: skinVars.colors.border
}`,
borderRadius: "16px",
background: skinVars.colors.background,
}}
Expand Down

0 comments on commit 5fbaf60

Please sign in to comment.