Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

swap search and leaderboard locations in Ballot component #245

Merged
merged 1 commit into from
May 4, 2021
Merged
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
24 changes: 12 additions & 12 deletions src/views/Voting/Ballot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,16 @@
</v-row>
</v-container>
</div>
<div class="pt-4 pb-8">
<v-container>
<v-row>
<v-col>
<BallotLeaders />
<Leaderboard />
</v-col>
</v-row>
</v-container>
<div class="pt-4 pb-12">
<VoteLeaderboardSearch />
</div>
<div class="colored pt-4 pb-4">
<v-container>
<v-row>
<v-col>
<div style="max-width:600px; margin: auto;">
<h2 class="ballot-header">
Cast your vote below!
Cast your vote today!
</h2>
<div class="text-center">
Click “Vote” to enter your choice for the winners of our 1st,
Expand All @@ -60,8 +53,15 @@
</v-row>
</v-container>
</div>
<div class="pt-4 pb-12">
<VoteLeaderboardSearch />
<div class="pt-4 pb-8">
<v-container>
<v-row>
<v-col>
<BallotLeaders />
<Leaderboard />
</v-col>
</v-row>
</v-container>
</div>
<div class="footer"></div>
</div>
Expand Down