Skip to content

Commit

Permalink
Fixed bg color for Atm and Dark
Browse files Browse the repository at this point in the history
  • Loading branch information
onmax committed Sep 8, 2023
1 parent 49399f9 commit 2ff54e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/elements/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function arrayEquals(arrA: string[], arrB: string[]): boolean {
<div
class="relative rounded-lg duration-[--duration,0] group/card h-full"
:class="{ 'rounded-b-0': progress === 1 && isMobile, 'overflow-hidden': isMobile }"
:style="`background: ${location.isAtm ? location.bg : 'white'}`"
:style="`background: ${location.isAtm ? location.bg[0] : 'white'}`"
>
<CardBg v-if="location.isAtm" :location="location" />

Expand Down

0 comments on commit 2ff54e7

Please sign in to comment.