Skip to content

Commit

Permalink
Edit components nayarahilton#1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasjs committed Nov 30, 2017
1 parent f0a74b0 commit 41210d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/components/PreLoading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ $radius = 0.5em
left 0
right 0
bottom 0
z-index 999
.logo
margin-right 20px
Expand Down
10 changes: 6 additions & 4 deletions src/components/QuestionBox.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<template>
<div>
<div class="question-box" v-for="question in questions">
<div class="questions-box"
v-for="question in questions"
:key="question.id"
>
<p class="profession" v-if="profession == 'true'">{{professionName}}</p>
<p class="question-text" >{{question.question}}</p>
<p class="questions-text" >{{question.question}}</p>
<div class="answer-holder" v-if="answers == 'true'">
<main-titles
:title-text="question.answer"
Expand All @@ -16,7 +19,6 @@
resume="true"
></profile-resume>
</div>

</div>
</div>
</template>
Expand Down Expand Up @@ -64,7 +66,7 @@ export default {
.titles__title
color $gray
.question
.questions
&-box
border 1px solid $pink
border-radius 10px
Expand Down

0 comments on commit 41210d7

Please sign in to comment.