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

Commit d140d3d

Browse files
Merge pull request #228 from codewizardshq/change-victory-image
add new image for victory after question before boss, change QuizAnsw…
2 parents b45d9bd + 036bc99 commit d140d3d

File tree

2 files changed

+11
-19
lines changed

2 files changed

+11
-19
lines changed

public/images/victory-screen.png

843 KB
Loading

src/views/Quiz/QuizAnswer.vue

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,9 @@
4848
<v-card-text>
4949
Congratulations, {{ User.displayName }}!
5050
<br />
51-
Not only can you call yourself one of the best kid coders in the
52-
land, you also win a $100 CodeWizardsHQ Gift Certificate.
51+
<img class="victory-image" src="/images/victory-screen.png" />
5352
<br />
5453
<br />
55-
Check your email tomorrow for your prize. You've qualified for the
56-
final boss level round of The Dragon Quest tomorrow at 8:00 AM CT
57-
April 24 and the chance to win $100 cash and free STEAM access code
58-
from Endless.
59-
<br />
60-
<br />
61-
Are you prepared?
62-
<br />
63-
<br />
64-
<span v-if="Quiz.awaitNextQuestion">
65-
That's all the questions available for now. The next question
66-
unlocks {{ Quiz.nextUnlockMoment.fromNow() }}
67-
</span>
6854
<v-card-actions>
6955
<v-btn block color="primary darken-1" @click="next">OKAY</v-btn>
7056
</v-card-actions>
@@ -156,21 +142,21 @@
156142
</v-card>
157143
</v-dialog>
158144

159-
<final-question-success v-if="showSuccessModal && isLastQuiz" />
145+
<!-- <final-question-success v-if="showSuccessModal && isLastQuiz" /> -->
160146
</div>
161147
</template>
162148

163149
<script>
164150
import * as api from "@/api";
165151
import { User, Quiz } from "@/store";
166-
import FinalQuestionSuccess from "@/components/FinalQuestionSuccess";
152+
// import FinalQuestionSuccess from "@/components/FinalQuestionSuccess";
167153
import QuizTransition from "@/components/QuizTransition";
168154
169155
export default {
170156
name: "quizAnswer",
171157
components: {
172-
QuizTransition,
173-
FinalQuestionSuccess
158+
QuizTransition
159+
// FinalQuestionSuccess
174160
},
175161
props: ["rank"],
176162
computed: {
@@ -296,3 +282,9 @@ export default {
296282
}
297283
};
298284
</script>
285+
286+
<style lang="scss" scoped>
287+
.victory-image {
288+
max-width: 100%;
289+
}
290+
</style>

0 commit comments

Comments
 (0)