|
|
@@ -1,5 +1,6 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
2
|
main.view--onboarding
|
|
|
3
|
+<<<<<<< HEAD
|
|
3
|
4
|
article(
|
|
4
|
5
|
style='display: flex; flex-direction: column; align-items: center'
|
|
5
|
6
|
v-if='survey'
|
|
|
@@ -13,6 +14,22 @@ main.view--onboarding
|
|
13
|
14
|
@update-answers='updateAnswers'
|
|
14
|
15
|
v-if='step && currentStep == i'
|
|
15
|
16
|
)
|
|
|
17
|
+=======
|
|
|
18
|
+ article(style='display: flex; flex-direction: column; align-items: center')
|
|
|
19
|
+ component(
|
|
|
20
|
+ :aspectQuestions='onboardingStep.component == "Aspects" ? aspectQuestions : null'
|
|
|
21
|
+ :currentStep='currentStep'
|
|
|
22
|
+ :is='onboardingStep.component'
|
|
|
23
|
+ @go-to-step='goToStep'
|
|
|
24
|
+ @handle-submit='onboardingStep.component == "Aspects" ? onSubmit : null'
|
|
|
25
|
+ )
|
|
|
26
|
+ //- form(@submit.prevent="onSubmit").questionnaire
|
|
|
27
|
+ //- QuestionResponse(v-for="question in questions" :question="question" @updated="onUpdate")
|
|
|
28
|
+ //- w-button(type="submit")
|
|
|
29
|
+ //- w-icon.mr1 wi-check
|
|
|
30
|
+ //- | SUBMIT ANSWERS
|
|
|
31
|
+ //- MainNav
|
|
|
32
|
+>>>>>>> ae00929 (:sparkles: radio button colors in place)
|
|
16
|
33
|
</template>
|
|
17
|
34
|
|
|
18
|
35
|
<script>
|
|
|
@@ -95,16 +112,10 @@ export default {
|
|
95
|
112
|
justify-content: center
|
|
96
|
113
|
align-items: center
|
|
97
|
114
|
width: 100%
|
|
98
|
|
-<<<<<<< HEAD
|
|
99
|
|
-
|
|
100
|
|
- h3
|
|
101
|
|
- text-transform: uppercase
|
|
102
|
|
-=======
|
|
103
|
115
|
|
|
104
|
116
|
|
|
105
|
117
|
h3
|
|
106
|
118
|
text-transform: uppercase
|
|
107
|
|
->>>>>>> 41496c8 (:sparkles: questionnaire styles added #TODO radio buttons checked correct color)
|
|
108
|
119
|
text-align: center
|
|
109
|
120
|
font-size: 28px
|
|
110
|
121
|
font-weight: bold
|
|
|
@@ -150,8 +161,12 @@ export default {
|
|
150
|
161
|
margin: 0
|
|
151
|
162
|
font-weight: bold
|
|
152
|
163
|
text-transform: capitalize
|
|
153
|
|
- .w-radio__input
|
|
154
|
|
- background-color: #D93D59
|
|
|
164
|
+ .w-radio__input
|
|
|
165
|
+
|
|
|
166
|
+ &.primary
|
|
|
167
|
+ background-color: #FFFFFF
|
|
|
168
|
+ border: #BCC5D3 1px solid
|
|
|
169
|
+
|
|
155
|
170
|
.w-card__content
|
|
156
|
171
|
.w-button
|
|
157
|
172
|
height: 50px
|