Skip to content

Commit

Permalink
add style to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
manuGil committed Feb 19, 2024
1 parent 1336413 commit 279b6a2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions frontend/pages/survey/[_id]/[_question].vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,16 @@
</div>
</div>
<!-- Navigation -->
<v-card-actions class="left">
<v-btn @click="prevQuestion" color="primary">
<v-card-actions>
<v-btn @click="prevQuestion" color="primary" variant="outlined">
<i class="fa-solid fa-arrow-left"></i>
<span class="q-pa-sm">Previous Question</span>
</v-btn>
<v-spacer> </v-spacer>
<v-btn v-show="survey_store.questionCount != current_question_index" @click="nextQuestion" color="primary">
<v-btn v-show="survey_store.questionCount != current_question_index" @click="nextQuestion" color="primary" variant="outlined">
<i class="fa-solid fa-arrow-right"></i>
<span class="q-pa-sm">Next Question</span>
</v-btn>
<v-spacer> </v-spacer>
<v-btn v-show="survey_store.questionCount == current_question_index" @click="submitAnswers" color="primary">
<v-btn v-show="survey_store.questionCount == current_question_index" @click="submitAnswers" color="primary" variant="tonal">
<i class="fa-solid fa-check"></i>
<span class="q-pa-sm">Submit</span>
</v-btn>
Expand Down

0 comments on commit 279b6a2

Please sign in to comment.