Skip to content

Commit

Permalink
added green line to match weather
Browse files Browse the repository at this point in the history
  • Loading branch information
yashjagtap23 committed Aug 3, 2023
1 parent 232dafd commit b0a1972
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/components/cards/PwcCard.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<template>
<card class="card">
<p class="title">PWC Hours</p>
<div class="green-line"></div>
<div class="countdown">
<p v-if="isOpen">{{ countdownTime }}</p>
<p v-else>{{ countdownTime }}</p>
<p v-if="isOpen" class="time-text">Time remaining until closure</p>
<p v-else class="time-text">Time remaining until next opening</p>
<p v-else>{{ countdownTime }}</p>
<p v-if="isOpen" class="time-text">Time remaining until closure</p>
<p v-else class="time-text">Time remaining until next opening</p>
</div>
</card>
</template>
Expand Down Expand Up @@ -163,6 +164,13 @@ export default {
.time-text
font-size: 12px
text-align: center
color: #333
color: #333
.green-line
width: 100%
height: 1px
background-color: #006400
margin-bottom: 10px
</style>

0 comments on commit b0a1972

Please sign in to comment.