This repository was archived by the owner on Dec 8, 2022. It is now read-only.
File tree 2 files changed +19
-26
lines changed
2 files changed +19
-26
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export default {
21
21
22
22
<style lang="scss" scoped>
23
23
.quiz-scroll {
24
- width : 550px ;
24
+ max- width : 550px ;
25
25
display : flex ;
26
26
margin : 30px 0 ;
27
27
padding : 10px 0 ;
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<v-container >
3
- <v-row >
4
- <v-col class = " inside-div " >
5
- < h2 class = " ballot-header " >
6
- Voting is over!
7
- </ h2 >
3
+ <QuizScroll class = " scroll " >
4
+ <template v-slot : title >
5
+ Voting Level Complete
6
+ </ template >
7
+ < template v-slot : default >
8
8
<p >
9
- Please check back soon for the results.
9
+ Congratulations to the top 10 students with the most votes! Thank you
10
+ everyone for participating. Finalists will receive a notification and
11
+ your code will be reviewed by the Galactic Wizard Panel on May 10-13.
12
+ Our grand prize winner will be announced May 14.
10
13
</p >
11
- </v-col >
12
- </v-row >
14
+ <Leaderboard />
15
+ </template >
16
+ </QuizScroll >
13
17
</v-container >
14
18
</template >
15
19
16
20
<script >
17
21
// TODO: this and VoteWoah should be a single component with props
22
+ import Leaderboard from " @/components/Leaderboard" ;
23
+ import QuizScroll from " @/components/QuizScroll" ;
18
24
export default {
19
- name: " VotingWoah"
25
+ name: " VotingOver" ,
26
+ components: { Leaderboard, QuizScroll }
20
27
};
21
28
</script >
22
29
23
30
<style lang="scss" scoped>
24
- .inside-div {
25
- background : gray ;
26
- }
27
-
28
- h2 {
29
- text-align : center ;
30
- color : #0d1d41 ;
31
- font-family : " Barlow" , sans-serif ;
32
- font-weight : bold ;
33
- margin-bottom : 12px ;
34
- }
35
-
36
- p {
37
- text-align : center ;
38
- color : #0d1d41 ;
39
- font-family : " Barlow" , sans-serif ;
31
+ .scroll {
32
+ margin : 0 auto ;
40
33
}
41
34
</style >
You can’t perform that action at this time.
0 commit comments