@burh/nuxt-core 1.0.439 → 1.0.441
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/burh-ds/Cards/BaseCard.vue +2 -2
- package/components/burh-ds/Curriculum/UserCurriculum/UpgradePlan.vue +22 -25
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvMiddle.vue +600 -600
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +25 -25
- package/components/burh-ds/Modals/PlanModal.vue +7 -18
- package/components/burh-ds/Questions/Question.vue +12 -0
- package/package.json +1 -1
|
@@ -102,7 +102,7 @@ export default {
|
|
|
102
102
|
height: 70px;
|
|
103
103
|
overflow: hidden;
|
|
104
104
|
position: relative;
|
|
105
|
-
background: #
|
|
105
|
+
background: #5865f2;
|
|
106
106
|
&.header__cover--shadow::before {
|
|
107
107
|
content: '';
|
|
108
108
|
position: absolute;
|
|
@@ -181,7 +181,7 @@ export default {
|
|
|
181
181
|
margin: 0 10px;
|
|
182
182
|
color: #AEB6BE;
|
|
183
183
|
&.new {
|
|
184
|
-
color: #
|
|
184
|
+
color: #5865f2;
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
}
|
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
<div class="upgrade">
|
|
3
|
+
<img src="/img/icons/premium.svg" alt="Foguete">
|
|
4
|
+
<h4>Vagas sem limites</h4>
|
|
5
|
+
<h6>Com o Premium, você ganha tempo e perfomance em todos os processos.</h6>
|
|
6
|
+
<base-button
|
|
7
|
+
size="md"
|
|
8
|
+
type="primary"
|
|
9
|
+
role="button"
|
|
10
|
+
class="burh-color"
|
|
11
|
+
@click.native="$emit('send-contact')"
|
|
12
|
+
>
|
|
13
|
+
<i class="fas fa-lock mr-1"></i>
|
|
14
|
+
Atualizar
|
|
15
|
+
</base-button>
|
|
16
|
+
</div>
|
|
10
17
|
</template>
|
|
11
18
|
|
|
12
19
|
<script>
|
|
13
20
|
export default {
|
|
14
|
-
|
|
21
|
+
name: 'upgrade-plan'
|
|
15
22
|
};
|
|
16
23
|
</script>
|
|
17
24
|
|
|
@@ -34,14 +41,14 @@ export default {
|
|
|
34
41
|
margin: 0 !important;
|
|
35
42
|
word-break: break-word !important;
|
|
36
43
|
|
|
37
|
-
|
|
38
|
-
|
|
44
|
+
img {
|
|
45
|
+
width: 140px;
|
|
39
46
|
}
|
|
40
47
|
|
|
41
48
|
h4 {
|
|
42
49
|
margin-top: 1rem;
|
|
43
50
|
font-weight: 600;
|
|
44
|
-
font-size: 1.
|
|
51
|
+
font-size: 1.25rem;
|
|
45
52
|
line-height: 1.68rem;
|
|
46
53
|
text-align: center;
|
|
47
54
|
|
|
@@ -51,24 +58,14 @@ export default {
|
|
|
51
58
|
h6 {
|
|
52
59
|
font-weight: normal;
|
|
53
60
|
font-size: 0.875rem;
|
|
54
|
-
line-height: 1.31rem;
|
|
55
61
|
text-align: center;
|
|
62
|
+
margin: 20px 0;
|
|
56
63
|
|
|
57
64
|
color: #525f7f;
|
|
58
65
|
}
|
|
59
66
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
width: 100%;
|
|
64
|
-
height: 2rem;
|
|
65
|
-
|
|
66
|
-
background: #1f8ceb;
|
|
67
|
-
color: #fff;
|
|
68
|
-
box-shadow: 0px 4.22794px 10.1471px rgba(0, 0, 0, 0.15);
|
|
69
|
-
border-radius: 22.8309px;
|
|
70
|
-
border: 0;
|
|
71
|
-
outline: 0;
|
|
67
|
+
/deep/ .burh-color {
|
|
68
|
+
background: #5865F2!important;
|
|
72
69
|
}
|
|
73
70
|
}
|
|
74
71
|
</style>
|