|
|
@@ -1,9 +1,15 @@
|
|
1
|
1
|
<template lang="pug">
|
|
2
|
|
-.splash
|
|
3
|
|
- .splash--icon(style='width: 347px; height: 347px; background-color: red')
|
|
4
|
|
- div(style='text-align: center')
|
|
5
|
|
- w-button.ma1.grow(@click='handleSubmit') GET STARTED
|
|
6
|
|
-
|
|
|
2
|
+w-flex.column
|
|
|
3
|
+ w-image.splash-logo(:height='300' :src='`/assets/logos/siimee_logo.jpg`' :width='300')
|
|
|
4
|
+ w-button.ma1.grow.next-btn(
|
|
|
5
|
+ :height='50'
|
|
|
6
|
+ :width='315'
|
|
|
7
|
+ @click='this.$emit("go-to-step", currentStep + 1)'
|
|
|
8
|
+ bg-color='success'
|
|
|
9
|
+ shadow
|
|
|
10
|
+ text
|
|
|
11
|
+ xl
|
|
|
12
|
+ ) GET STARTED
|
|
7
|
13
|
</template>
|
|
8
|
14
|
|
|
9
|
15
|
<script>
|
|
|
@@ -22,6 +28,11 @@ export default {
|
|
22
|
28
|
this.$emit('update-answers', null)
|
|
23
|
29
|
},
|
|
24
|
30
|
},
|
|
25
|
|
-
|
|
26
|
31
|
}
|
|
27
|
32
|
</script>
|
|
|
33
|
+
|
|
|
34
|
+<style lang="sass">
|
|
|
35
|
+.w-button
|
|
|
36
|
+ &.next-btn
|
|
|
37
|
+ background-color: #5BA626
|
|
|
38
|
+</style>
|