@burh/nuxt-core 1.0.410 → 1.0.411
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/assets/images/icons/icon5.svg +3 -3
- package/assets/images/icons/icon6.svg +3 -3
- package/assets/sass/burh-ds/_global.scss +324 -324
- package/assets/sass/burh-ds/atoms/_forms.scss +21 -19
- package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
- package/assets/sass/burh-ds/content/_main-content.scss +25 -25
- package/components/argon-core/BaseDropdown.vue +114 -114
- package/components/argon-core/LoadingPanel.vue +26 -26
- package/components/burh-ds/Cards/BaseCard.vue +194 -194
- package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
- package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +874 -859
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSideNotAuth.vue +379 -379
- package/components/burh-ds/Filters/BaseFilterContainer.vue +91 -91
- package/components/burh-ds/Headings/AppHeader.vue +222 -222
- package/components/burh-ds/Modals/AddCustomerModal.vue +5 -46
- package/components/burh-ds/Modals/AddMember.vue +5 -48
- package/components/burh-ds/Modals/AddRoleModal.vue +4 -47
- package/components/burh-ds/Modals/AppConfigModal.vue +326 -326
- package/components/burh-ds/Modals/NewUserModal.vue +87 -87
- package/components/burh-ds/Modals/PlanModal.vue +133 -172
- package/components/burh-ds/Modals/RequestModal.vue +206 -247
- package/components/burh-ds/Modals/SendTest.vue +7 -43
- package/components/burh-ds/Modals/SharedModal.vue +7 -50
- package/components/burh-ds/Modals/UniversalShareModal.vue +7 -50
- package/components/burh-ds/Modals/UniversalWhatsappModal.vue +5 -53
- package/components/burh-ds/Modals/WhatsappModal.vue +79 -127
- package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
- package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
- package/components/burh-ds/Skeleton/BaseCourseInfo.vue +71 -71
- package/components/burh-ds/Skeleton/Cards.vue +86 -86
- package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
- package/components/burh-ds/Tabs/TesteTab.vue +108 -108
- package/components/layouts/burh-ds/navbar/PublicNavbar.vue +168 -168
- package/environment.js +221 -221
- package/nuxt.config.js +207 -207
- package/package.json +1 -1
- package/plugins/vClickOutside.js +4 -4
|
@@ -1,236 +1,221 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
</el-dialog>
|
|
2
|
+
<modal
|
|
3
|
+
:show.sync="isActive"
|
|
4
|
+
:size="'lg'"
|
|
5
|
+
@close="$emit('close')"
|
|
6
|
+
>
|
|
7
|
+
<template>
|
|
8
|
+
<div class="modal-request">
|
|
9
|
+
<h3>Requisição de Vagas</h3>
|
|
10
|
+
|
|
11
|
+
<validation-observer ref="sendTest">
|
|
12
|
+
<section>
|
|
13
|
+
<label for="job">Escolha a vaga desejada</label>
|
|
14
|
+
<el-select
|
|
15
|
+
filterable
|
|
16
|
+
no-match-text="Nenhuma vaga encontrada"
|
|
17
|
+
no-data-text="Nenhuma vaga encontrada"
|
|
18
|
+
placeholder="Escolha"
|
|
19
|
+
v-model="jobs.job"
|
|
20
|
+
class="w-100"
|
|
21
|
+
>
|
|
22
|
+
<el-option
|
|
23
|
+
v-for="(job, index) in allJobs"
|
|
24
|
+
class="select-danger"
|
|
25
|
+
:value="job.id"
|
|
26
|
+
:label="job.title"
|
|
27
|
+
:key="index"
|
|
28
|
+
></el-option>
|
|
29
|
+
</el-select>
|
|
30
|
+
|
|
31
|
+
<label for="reason" class="mt-4">Motivo</label>
|
|
32
|
+
<el-select
|
|
33
|
+
filterable
|
|
34
|
+
no-match-text="Nenhum dado encontrado"
|
|
35
|
+
no-data-text="Nenhum dado encontrado"
|
|
36
|
+
placeholder="Escolha"
|
|
37
|
+
v-model="jobs.reason"
|
|
38
|
+
class="w-100"
|
|
39
|
+
>
|
|
40
|
+
<el-option
|
|
41
|
+
v-for="(reas, index) in allReasons"
|
|
42
|
+
class="select-danger"
|
|
43
|
+
:value="reas.value"
|
|
44
|
+
:label="reas.label"
|
|
45
|
+
:key="index"
|
|
46
|
+
></el-option>
|
|
47
|
+
</el-select>
|
|
48
|
+
|
|
49
|
+
<validation-provider
|
|
50
|
+
tag="div"
|
|
51
|
+
name="Salário"
|
|
52
|
+
rules="required"
|
|
53
|
+
v-slot="{ errors }"
|
|
54
|
+
>
|
|
55
|
+
<base-input
|
|
56
|
+
v-model="jobs.salary"
|
|
57
|
+
class="w-100 mt-4"
|
|
58
|
+
id="salary"
|
|
59
|
+
:error="errors[0]"
|
|
60
|
+
:valid="errors.length ? true : false"
|
|
61
|
+
label="Salário"
|
|
62
|
+
v-on:input="setSalary($event)"
|
|
63
|
+
placeholder="R$ 1.500,00"
|
|
64
|
+
/>
|
|
65
|
+
</validation-provider>
|
|
66
|
+
|
|
67
|
+
<el-checkbox v-model="jobs.confidential">
|
|
68
|
+
Confidencial
|
|
69
|
+
</el-checkbox>
|
|
70
|
+
|
|
71
|
+
<label for="observations" class="mt-4"
|
|
72
|
+
>Observações</label
|
|
73
|
+
>
|
|
74
|
+
<textarea
|
|
75
|
+
id="observations"
|
|
76
|
+
class="form-control"
|
|
77
|
+
v-model="jobs.observations"
|
|
78
|
+
></textarea>
|
|
79
|
+
|
|
80
|
+
<button
|
|
81
|
+
type="button"
|
|
82
|
+
@click="sendRequest"
|
|
83
|
+
class="btn btn-primary"
|
|
84
|
+
:disabled="!jobs.job || !jobs.reason"
|
|
85
|
+
>
|
|
86
|
+
Solicitar Abertura
|
|
87
|
+
</button>
|
|
88
|
+
</section>
|
|
89
|
+
</validation-observer>
|
|
90
|
+
</div>
|
|
91
|
+
|
|
92
|
+
<span class="tool tool-close" @click="$emit('close')">
|
|
93
|
+
Fechar
|
|
94
|
+
<font-awesome-icon
|
|
95
|
+
:icon="['fas', 'times']"
|
|
96
|
+
class="text-white ml-1"
|
|
97
|
+
/>
|
|
98
|
+
</span>
|
|
99
|
+
</template>
|
|
100
|
+
</modal>
|
|
102
101
|
</template>
|
|
103
102
|
|
|
104
103
|
<script>
|
|
105
|
-
import {
|
|
104
|
+
import { Select, Option, Checkbox } from 'element-ui';
|
|
106
105
|
|
|
107
106
|
export default {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}
|
|
107
|
+
name: 'request-modal',
|
|
108
|
+
components: {
|
|
109
|
+
[Select.name]: Select,
|
|
110
|
+
[Option.name]: Option,
|
|
111
|
+
[Checkbox.name]: Checkbox
|
|
112
|
+
},
|
|
113
|
+
props: {
|
|
114
|
+
isActive: Boolean,
|
|
115
|
+
allJobs: Array,
|
|
116
|
+
userId: String,
|
|
117
|
+
allReasons: Array
|
|
118
|
+
},
|
|
119
|
+
data() {
|
|
120
|
+
return {
|
|
121
|
+
jobs: {
|
|
122
|
+
job: '',
|
|
123
|
+
reason: '',
|
|
124
|
+
salary: 'R$ 0,00',
|
|
125
|
+
confidential: false,
|
|
126
|
+
observations: ''
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
},
|
|
130
|
+
methods: {
|
|
131
|
+
async sendRequest() {
|
|
132
|
+
const pass = await this.$refs.sendTest.validate();
|
|
133
|
+
if (!pass || !this.jobs.job || !this.jobs.reason) {
|
|
134
|
+
return;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
let salary = this.jobs.salary;
|
|
138
|
+
salary = this.replaceAll(salary, '.', '');
|
|
139
|
+
salary = salary
|
|
140
|
+
.replace(',', '.')
|
|
141
|
+
.replace('R$', '')
|
|
142
|
+
.trim();
|
|
143
|
+
|
|
144
|
+
let payload = {
|
|
145
|
+
job_id: this.jobs.job,
|
|
146
|
+
user_id: parseInt(this.userId),
|
|
147
|
+
reason: this.jobs.reason,
|
|
148
|
+
salary: parseInt(salary),
|
|
149
|
+
private: this.jobs.confidential,
|
|
150
|
+
note: this.jobs.observations
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
this.$emit('send-request', payload);
|
|
154
|
+
this.$emit('close');
|
|
155
|
+
|
|
156
|
+
let field = {};
|
|
157
|
+
for (field in this.jobs) this.jobs[field] = '';
|
|
158
|
+
this.jobs.salary = 'R$ 0,00';
|
|
159
|
+
},
|
|
160
|
+
setSalary(e, onlyMasking = false) {
|
|
161
|
+
let value = e
|
|
162
|
+
.replace(/\s/g, '')
|
|
163
|
+
.replace('R$', '')
|
|
164
|
+
.replace('.', '')
|
|
165
|
+
.replace(',', '');
|
|
166
|
+
|
|
167
|
+
if (value.trim() == '') {
|
|
168
|
+
this.jobs.salary = 'R$ 0,00';
|
|
169
|
+
return;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (value.length > 2) {
|
|
173
|
+
let position = value.length - 2;
|
|
174
|
+
value = [
|
|
175
|
+
value.slice(0, position),
|
|
176
|
+
'.',
|
|
177
|
+
value.slice(position)
|
|
178
|
+
].join('');
|
|
179
|
+
} else {
|
|
180
|
+
value = '0.' + value;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
while (value.charAt(0) === '0' && value.length >= 5) {
|
|
184
|
+
value = value.substr(1);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
if (!onlyMasking) {
|
|
188
|
+
this.jobs.salary = parseFloat(value).toLocaleString('pt-BR', {
|
|
189
|
+
style: 'currency',
|
|
190
|
+
currency: 'BRL'
|
|
191
|
+
});
|
|
192
|
+
} else {
|
|
193
|
+
return parseFloat(value).toLocaleString('pt-BR', {
|
|
194
|
+
style: 'currency',
|
|
195
|
+
currency: 'BRL'
|
|
196
|
+
});
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
replaceAll(str, find, replace) {
|
|
200
|
+
return str.replace(
|
|
201
|
+
new RegExp(find.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'), 'g'),
|
|
202
|
+
replace
|
|
203
|
+
);
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
watch: {
|
|
207
|
+
isActive(newValue) {
|
|
208
|
+
!newValue && this.$emit('close-modal');
|
|
209
|
+
}
|
|
210
|
+
}
|
|
213
211
|
};
|
|
214
212
|
</script>
|
|
215
213
|
|
|
216
214
|
<style lang="scss" scoped>
|
|
217
215
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
218
216
|
|
|
219
|
-
/deep/ .
|
|
220
|
-
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
/deep/ .el-dialog__header {
|
|
224
|
-
display: none;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
/deep/ .el-dialog {
|
|
228
|
-
overflow: hidden;
|
|
229
|
-
border-radius: 0.625rem;
|
|
230
|
-
padding-bottom: 3.125rem;
|
|
231
|
-
max-width: 38.375rem;
|
|
232
|
-
min-width: 38.375rem;
|
|
233
|
-
margin-top: 5vh !important;
|
|
217
|
+
/deep/ .modal-body {
|
|
218
|
+
margin: 1rem 2rem;
|
|
234
219
|
}
|
|
235
220
|
|
|
236
221
|
.modal-request {
|
|
@@ -252,30 +237,4 @@ export default {
|
|
|
252
237
|
}
|
|
253
238
|
}
|
|
254
239
|
}
|
|
255
|
-
|
|
256
|
-
.tool {
|
|
257
|
-
position: absolute;
|
|
258
|
-
top: 1rem;
|
|
259
|
-
z-index: 10;
|
|
260
|
-
color: $primary;
|
|
261
|
-
cursor: pointer;
|
|
262
|
-
|
|
263
|
-
&-close {
|
|
264
|
-
position: absolute;
|
|
265
|
-
width: 5.5rem;
|
|
266
|
-
height: 1.687rem;
|
|
267
|
-
right: 7px;
|
|
268
|
-
top: 7px;
|
|
269
|
-
display: flex;
|
|
270
|
-
justify-content: center;
|
|
271
|
-
align-items: center;
|
|
272
|
-
|
|
273
|
-
font-size: 0.687rem;
|
|
274
|
-
|
|
275
|
-
font-weight: 500;
|
|
276
|
-
background: rgba(0, 0, 0, 0.2);
|
|
277
|
-
border-radius: 1.09rem;
|
|
278
|
-
color: #fff;
|
|
279
|
-
}
|
|
280
|
-
}
|
|
281
240
|
</style>
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
:
|
|
4
|
-
|
|
5
|
-
custom-class="position-relative"
|
|
2
|
+
<modal
|
|
3
|
+
:show.sync="isModalOpen"
|
|
4
|
+
:size="'lg'"
|
|
6
5
|
@close="$emit('close')"
|
|
7
6
|
>
|
|
8
7
|
<basics :isLoading="loading" v-if="loading"/>
|
|
@@ -171,20 +170,18 @@
|
|
|
171
170
|
/>
|
|
172
171
|
</span>
|
|
173
172
|
</template>
|
|
174
|
-
</
|
|
173
|
+
</modal>
|
|
175
174
|
</template>
|
|
176
175
|
|
|
177
176
|
<script>
|
|
178
177
|
import Basics from '../Loadings/Basics';
|
|
179
|
-
import {
|
|
180
|
-
import Badge from '../../argon-core/Badge.vue';
|
|
178
|
+
import { Select, Option } from 'element-ui';
|
|
181
179
|
|
|
182
180
|
export default {
|
|
183
181
|
name: 'send-test',
|
|
184
182
|
components: {
|
|
185
183
|
[Select.name]: Select,
|
|
186
184
|
[Option.name]: Option,
|
|
187
|
-
[Dialog.name]: Dialog,
|
|
188
185
|
Basics
|
|
189
186
|
},
|
|
190
187
|
props: {
|
|
@@ -289,15 +286,8 @@ export default {
|
|
|
289
286
|
<style lang="scss" scoped>
|
|
290
287
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
291
288
|
|
|
292
|
-
/deep/ .
|
|
293
|
-
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
/deep/ .el-dialog {
|
|
297
|
-
overflow: hidden;
|
|
298
|
-
border-radius: 10px;
|
|
299
|
-
padding-bottom: 25px;
|
|
300
|
-
max-width: 734px;
|
|
289
|
+
/deep/ .modal-body {
|
|
290
|
+
margin: 2rem 0;
|
|
301
291
|
}
|
|
302
292
|
|
|
303
293
|
/deep/ .mt-2,
|
|
@@ -364,30 +354,4 @@ export default {
|
|
|
364
354
|
outline: 0;
|
|
365
355
|
}
|
|
366
356
|
}
|
|
367
|
-
|
|
368
|
-
.tool {
|
|
369
|
-
position: absolute;
|
|
370
|
-
top: 1rem;
|
|
371
|
-
z-index: 10;
|
|
372
|
-
color: $primary;
|
|
373
|
-
cursor: pointer;
|
|
374
|
-
|
|
375
|
-
&-close {
|
|
376
|
-
position: absolute;
|
|
377
|
-
width: 88px;
|
|
378
|
-
height: 27px;
|
|
379
|
-
right: 7px;
|
|
380
|
-
top: 7px;
|
|
381
|
-
display: flex;
|
|
382
|
-
justify-content: center;
|
|
383
|
-
align-items: center;
|
|
384
|
-
|
|
385
|
-
font-size: 11px;
|
|
386
|
-
|
|
387
|
-
font-weight: 500;
|
|
388
|
-
background: rgba(0, 0, 0, 0.2);
|
|
389
|
-
border-radius: 17.5px;
|
|
390
|
-
color: #fff;
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
357
|
</style>
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
:
|
|
4
|
-
|
|
5
|
-
custom-class="position-relative"
|
|
2
|
+
<modal
|
|
3
|
+
:show.sync="isActive"
|
|
4
|
+
:size="'lg'"
|
|
6
5
|
@close="$emit('close')"
|
|
7
6
|
>
|
|
8
7
|
<template>
|
|
@@ -120,17 +119,13 @@
|
|
|
120
119
|
/>
|
|
121
120
|
</span>
|
|
122
121
|
</template>
|
|
123
|
-
</
|
|
122
|
+
</modal>
|
|
124
123
|
</template>
|
|
125
124
|
|
|
126
125
|
<script>
|
|
127
|
-
import { Dialog } from 'element-ui';
|
|
128
|
-
|
|
129
126
|
export default {
|
|
130
127
|
name: 'shared-modal',
|
|
131
|
-
components: {
|
|
132
|
-
[Dialog.name]: Dialog
|
|
133
|
-
},
|
|
128
|
+
components: {},
|
|
134
129
|
props: {
|
|
135
130
|
isActive: Boolean,
|
|
136
131
|
userData: Object,
|
|
@@ -175,20 +170,8 @@ export default {
|
|
|
175
170
|
<style lang="scss" scoped>
|
|
176
171
|
@import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
|
|
177
172
|
|
|
178
|
-
/deep/ .
|
|
179
|
-
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
/deep/ .el-dialog__header {
|
|
183
|
-
display: none;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
/deep/ .el-dialog {
|
|
187
|
-
overflow: hidden;
|
|
188
|
-
border-radius: 10px;
|
|
189
|
-
padding-bottom: 50px;
|
|
190
|
-
max-width: 725px;
|
|
191
|
-
min-width: 725px;
|
|
173
|
+
/deep/ .modal-body {
|
|
174
|
+
margin-bottom: 2rem !important;
|
|
192
175
|
}
|
|
193
176
|
|
|
194
177
|
.social {
|
|
@@ -213,32 +196,6 @@ export default {
|
|
|
213
196
|
}
|
|
214
197
|
}
|
|
215
198
|
|
|
216
|
-
.tool {
|
|
217
|
-
position: absolute;
|
|
218
|
-
top: 1rem;
|
|
219
|
-
z-index: 10;
|
|
220
|
-
color: $primary;
|
|
221
|
-
cursor: pointer;
|
|
222
|
-
|
|
223
|
-
&-close {
|
|
224
|
-
position: absolute;
|
|
225
|
-
width: 88px;
|
|
226
|
-
height: 27px;
|
|
227
|
-
right: 7px;
|
|
228
|
-
top: 7px;
|
|
229
|
-
display: flex;
|
|
230
|
-
justify-content: center;
|
|
231
|
-
align-items: center;
|
|
232
|
-
|
|
233
|
-
font-size: 11px;
|
|
234
|
-
|
|
235
|
-
font-weight: 500;
|
|
236
|
-
background: rgba(0, 0, 0, 0.2);
|
|
237
|
-
border-radius: 17.5px;
|
|
238
|
-
color: #fff;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
|
|
242
199
|
.btn-whatsapp:hover {
|
|
243
200
|
color: white;
|
|
244
201
|
}
|