Skip to content

Commit

Permalink
fix darkmode flag bgs
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Jul 2, 2024
1 parent 5b8d1c2 commit 5ca1f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SpeedLiveScore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class="score-container border flex items-center justify-center relative overflow-hidden"
:class="{
'border-black bg-white text-black': theme !== 'dark',
'border-gray-600 bg-black text-white': theme === 'dark',
'border-gray-600 bg-black text-white dark': theme === 'dark',
'bg-green-100': theme !== 'dark' && scoresheet?.__typename === 'MarkScoresheet' && scoresheet?.completedAt,
'bg-green-900': theme === 'dark' && scoresheet?.__typename === 'MarkScoresheet' && scoresheet?.completedAt,
Expand Down

0 comments on commit 5ca1f0c

Please sign in to comment.