Add survey button to attributions popup and hand at end of the game. Closes #38
This commit is contained in:
parent
0e8f8811f6
commit
66ff888221
2 changed files with 24 additions and 1 deletions
|
|
@ -12,7 +12,16 @@
|
||||||
>
|
>
|
||||||
<h2 class="centre">Attributions:</h2>
|
<h2 class="centre">Attributions:</h2>
|
||||||
<p class="centre">
|
<p class="centre">
|
||||||
Made By: Oliver Akins
|
Ghost Writer is designed and created by
|
||||||
|
<a href="resonym.com" target="_blank" rel="noopener">Resonym</a>
|
||||||
|
<br>
|
||||||
|
Online Prototype Made By: Oliver Akins (Alkali Metal)
|
||||||
|
<br>
|
||||||
|
<a :href="$store.state.survey_link" target="_blank" rel="noopener">
|
||||||
|
<button class="clickable">
|
||||||
|
Complete The Survey
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>
|
<p>
|
||||||
|
|
@ -77,6 +86,15 @@ export default {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
background-color: var(--background2);
|
||||||
|
color: var(--background2-text);
|
||||||
|
border-radius: 7px;
|
||||||
|
font-size: large;
|
||||||
|
padding: 10px;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
a, a:visited {
|
a, a:visited {
|
||||||
color: var(--light-font-colour);
|
color: var(--light-font-colour);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,11 @@
|
||||||
{{ mostRecentQuestion }}
|
{{ mostRecentQuestion }}
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-center" v-else-if="gameOver">
|
<div class="flex-center" v-else-if="gameOver">
|
||||||
|
<a :href="$store.state.survey_link" target="_blank" rel="noopener">
|
||||||
|
<button class="clickable">
|
||||||
|
Complete The Survey
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
<button
|
<button
|
||||||
class="clickable"
|
class="clickable"
|
||||||
@click.stop="endGame"
|
@click.stop="endGame"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue