Skip to content

Commit

Permalink
return to regular patriot
Browse files Browse the repository at this point in the history
  • Loading branch information
aw-0 authored Sep 27, 2023
1 parent fd967e0 commit 395738f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/views/Home/CountdownCircle.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="circle" :class="{ 'full-screen': fullScreenMode }">
<!-- Easter Egg -->
<img @click="toggled = !toggled" @mouseover="toggled = !toggled" :src="!toggled ? spacePatriot : patriot" :class="'logo' + (!toggled ? ' space-logo' : '')">
<img @click="toggled = !toggled" @mouseover="toggled = !toggled" :src="patriot" :class="'logo">
<div v-if="mode === 'current'" class="countdown">
{{ countdown }}
</div>
Expand All @@ -18,7 +18,6 @@

<script>
import { mapState } from 'pinia';
import spacePatriot from '@/assets/patriot-logo-space.png';
import patriot from '@/assets/patriot.png';
import useScheduleStore from '@/stores/schedules';
Expand All @@ -37,7 +36,6 @@ export default {
data() {
return {
toggled: false,
spacePatriot,
patriot,
};
},
Expand Down

0 comments on commit 395738f

Please sign in to comment.