Skip to content

Commit

Permalink
Fix CardDotsMenu color on cards without full background
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Sep 6, 2023
1 parent a415d8e commit 718a30e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/elements/CardDotsMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ function handleOpen(open: boolean) {
<IconThreeDots
class="w-5 h-5 transition-colors"
:class="{
'text-space/30 hover:text-space/50': location.isLight,
'text-white/60 hover:text-white/80': location.isDark,
'text-space/30 hover:text-space/50': !location.isAtm || location.isLight,
'text-white/60 hover:text-white/80': location.isAtm && location.isDark,
}"
/>
</DropdownMenuTrigger>
Expand Down

0 comments on commit 718a30e

Please sign in to comment.