Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/plugins/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ const routes = [
path: "voting",
name: "voting",
component: () => {
return import("@/views/Voting/VotingOver");
// return import("@/views/Voting/VotingOver");
return import("@/views/Voting/VoteWoah");
// if (isChallengeClosed()) {
// return import("@/views/Voting/Ballot");
// } else {
Expand Down
38 changes: 25 additions & 13 deletions src/views/Voting/VoteWoah.vue
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
<template>
<v-container>
<v-row>
<v-col>
<h2 class="ballot-header">
Woah, voting has not started yet!
</h2>
<p>
Our challengers are hard at work. Come back on April 26 5 PM CT to
vote for the winner.
</p>
</v-col>
</v-row>
</v-container>
<div class="vote-woah-container">
<v-container>
<v-row>
<v-col class="inside-div">
<h2 class="ballot-header">
Woah, voting has not started yet!
</h2>
<p>
Our challengers are hard at work. Come back on May 3 to vote for the
winner.
</p>
</v-col>
</v-row>
</v-container>
</div>
</template>

<script>
Expand All @@ -21,6 +23,16 @@ export default {
</script>

<style lang="scss" scoped>
.vote-woah-container {
height: 100%;
width: 100%;
background: url("/images/space-background.jpg");
}

.inside-div {
background: gray;
}

h2 {
text-align: center;
color: #0d1d41;
Expand Down