@burh/nuxt-core 1.0.220 → 1.0.222

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.
@@ -1,433 +1,429 @@
1
- <template>
2
- <div class="bg-white content-left">
3
- <div class="profile w-100 text-center">
4
- <div class="avatar">
5
- <img
6
- v-if="userData.urlAvatar"
7
- :src="userData.urlAvatar"
8
- :alt="userData.name"
9
- />
10
- <div v-else class="no-image">
11
- {{ userData.name }}
12
- </div>
13
- </div>
14
-
15
- <h5 class="mb-0 text-wrap" :class="{ 'mt-5': !userData.urlAvatar }">
16
- {{ userData.name }} {{ userData.last_name }}
17
- </h5>
18
-
19
- <p class="user-info" v-if="userData.user_experience.length > 0">
20
- {{ userData.user_experience[0].job_title }} em
21
- {{ userData.user_experience[0].company }}
22
- </p>
23
-
24
- <span v-if="userData.user_address">
25
- <i class="fas fa-map-marker-alt"></i>
26
- {{ userData.user_address.city_name }} -
27
- {{ userData.user_address.region_code }}
28
- </span>
29
- </div>
30
-
31
- <div
32
- class="deficiency title-block mt-3 ml-4"
33
- v-if="userData.user_deficiency"
34
- >
35
- <div class="d-flex align-items-center">
36
- <i class="fas fa-wheelchair icon--blue"></i>
37
- <h6 class="mb-0 ml-2">Deficiência</h6>
38
- </div>
39
- <div class="line"></div>
40
- <p>
41
- {{ userData.user_deficiency.deficiency_id | allDeficiencies }} -
42
- {{ userData.user_deficiency.cid }}
43
- </p>
44
-
45
- <p v-show="userData.user_deficiency.appliance">
46
- Acessório: {{ userData.user_deficiency.appliance }}
47
- </p>
48
-
49
- <p v-show="userData.user_deficiency.apparatus">
50
- Necessidade: {{ userData.user_deficiency.apparatus }}
51
- </p>
52
-
53
- <p v-show="userData.user_deficiency.course">
54
- Curso: {{ userData.user_deficiency.course }}
55
- </p>
56
-
57
- <p v-show="userData.user_deficiency.note">
58
- Anotações: {{ userData.user_deficiency.note }}
59
- </p>
60
-
61
- <p v-show="userData.user_deficiency.transport === 1">
62
- Utiliza transporte coletivo
63
- </p>
64
-
65
- <p v-show="userData.user_deficiency.vehicle === 1">
66
- Possuí veículo adaptado
67
- </p>
68
-
69
- <p v-show="userData.user_deficiency.escort === 1">
70
- Precisa de acompanhante
71
- </p>
72
- </div>
73
-
74
- <div
75
- v-show="userData.user_skill.length > 0"
76
- class="skills title-block ml-4"
77
- >
78
- <h6 class="mb-0">Habilidades</h6>
79
- <div class="line"></div>
80
-
81
- <p
82
- v-for="(skill, index) in userData.user_skill"
83
- :key="`skill-${index}`"
84
- class="ml-1 mt-1 mb-0 text-capitalize"
85
- >
86
- {{ skill.skill_word }}
87
- </p>
88
- </div>
89
-
90
- <div
91
- v-show="userData.user_language.length > 0"
92
- class="languages title-block mt-3 ml-4"
93
- >
94
- <h6 class="mb-0">Idiomas</h6>
95
- <div class="line"></div>
96
-
97
- <p
98
- class="mb-1 text-capitalize"
99
- v-for="(lan, index) in userData.user_language"
100
- :key="index"
101
- >
102
- {{ lan.language[0].name }} {{ languageLevel(lan.level) }}
103
- </p>
104
- </div>
105
-
106
- <div
107
- v-show="userData.user_desired_job.length > 0"
108
- class="desidered title-block mt-3 ml-4"
109
- >
110
- <h6 class="mb-0">Cargos desejados</h6>
111
- <div class="line"></div>
112
-
113
- <p
114
- v-for="(des, index) in userData.user_desired_job"
115
- :key="`skill-${index}`"
116
- class="ml-1 mt-1 mb-0 text-capitalize"
117
- >
118
- {{ des.occupation }}
119
- </p>
120
- </div>
121
-
122
- <div class="socials text-center mt-5">
123
- <a
124
- :href="baseUrl + '/' + userData.slug.slug"
125
- class="text-center"
126
- target="_blank"
127
- rel="noopener noreferrer"
128
- >
129
- <img
130
- class="no-social"
131
- src="../../../../assets/images/burhCv.svg"
132
- alt="Burh"
133
- />
134
- </a>
135
- <a
136
- v-show="userData.user_complementary_information.facebook_url"
137
- :href="userData.user_complementary_information.facebook_url"
138
- target="_blank"
139
- class="ml-2"
140
- rel="noopener noreferrer"
141
- >
142
- <img
143
- class="no-social"
144
- src="../../../../assets/images/facebookCv.svg"
145
- alt="Facebook"
146
- />
147
- </a>
148
- <a
149
- v-show="userData.user_complementary_information.linkedin_url"
150
- :href="userData.user_complementary_information.linkedin_url"
151
- target="_blank"
152
- class="ml-2"
153
- rel="noopener noreferrer"
154
- >
155
- <img
156
- class="no-social"
157
- src="../../../../assets/images/linkedinCv.svg"
158
- alt="Linkdin"
159
- />
160
- </a>
161
- <a
162
- v-show="userData.user_complementary_information.website"
163
- :href="userData.user_complementary_information.website"
164
- class="text-center ml-2"
165
- target="_blank"
166
- rel="noopener noreferrer"
167
- >
168
- <img
169
- class="no-social"
170
- src="../../../../assets/images/webCv.svg"
171
- alt="Web"
172
- />
173
- </a>
174
- </div>
175
-
176
- <div class="burh-code text-center mt-4">
177
- <vue-qrcode
178
- :value="baseUrl + '/' + userData.slug.slug"
179
- :options="{ width: 98, height: 98 }"
180
- class="border qr-code"
181
- ></vue-qrcode>
182
- <p class="mb-0">Código BURH</p>
183
- <span class="qr-id">{{ userData.id }}</span>
184
- </div>
185
- </div>
186
- </template>
187
-
188
- <script>
189
- import getPrefixes from '~/util/getPrefixes.js';
190
- import VueQrcode from '@chenfengyuan/vue-qrcode';
191
-
192
- export default {
193
- name: 'user-cv-left-side',
194
- components: {
195
- VueQrcode
196
- },
197
- props: {
198
- userData: Object,
199
- baseUrl: String
200
- },
201
- methods: {
202
- getTime(
203
- { start_year = null, end_year = null, start_month, end_month },
204
- textHappening = 'Cursando'
205
- ) {
206
- const isHappening = !end_month && !end_year;
207
-
208
- if (isHappening) {
209
- return textHappening;
210
- }
211
-
212
- const dateInitial = this.$moment(
213
- ['1', start_month.toString(), start_year.toString()],
214
- 'DD/MM/YYYY'
215
- );
216
- const dateDone = this.$moment(
217
- ['1', end_month.toString(), end_year.toString()],
218
- 'DD/MM/YYYY'
219
- );
220
- const diffDuration = this.$moment.duration(
221
- dateDone.diff(dateInitial)
222
- );
223
- const years = diffDuration.years();
224
- const months = diffDuration.months();
225
-
226
- if (years) {
227
- return years > 1 ? `(${years} anos)` : `(${years} ano)`;
228
- }
229
-
230
- return months > 1
231
- ? `(${months} meses)`
232
- : months == 1
233
- ? `(${months} mês)`
234
- : '';
235
- },
236
- languageLevel(level) {
237
- switch (parseInt(level)) {
238
- case 1:
239
- return 'Iniciante';
240
- case 2:
241
- return 'Elementar';
242
- case 3:
243
- return 'Pré-intermediário';
244
- case 4:
245
- return 'Intermediário';
246
- case 5:
247
- return 'Intermediário Superior';
248
- case 6:
249
- return 'Avançado';
250
- case 7:
251
- return 'Fluente';
252
- default:
253
- return '';
254
- }
255
- },
256
- treatPhone(phone) {
257
- if (phone) {
258
- if (phone == '0' || phone.length < 9 || !phone) {
259
- return 'não cadastrado';
260
- }
261
- }
262
-
263
- return phone;
264
- },
265
- treatCellphone(cellphone) {
266
- if (cellphone) {
267
- if (cellphone == '0' || cellphone.length < 11 || !cellphone) {
268
- return 'não cadastrado';
269
- }
270
- }
271
-
272
- return cellphone;
273
- },
274
- handleGetPrefixes(name = '') {
275
- return getPrefixes(name);
276
- },
277
- treatEndDate(end_month, end_year) {
278
- if (end_month && end_year) {
279
- return `${end_month}/${end_year}`;
280
- }
281
- return '';
282
- }
283
- },
284
- filters: {
285
- allDeficiencies(id) {
286
- const typeDeficiency = {
287
- 1: 'Deficiência Física',
288
- 2: 'Deficiência Visual',
289
- 3: 'Deficiência Mental',
290
- 4: 'Deficiência Auditiva',
291
- 5: 'Deficiência Fonológica',
292
- 6: 'Deficiência Múltipla'
293
- };
294
-
295
- return typeDeficiency[id] || '-';
296
- }
297
- }
298
- };
299
- </script>
300
-
301
- <style lang="scss" scoped>
302
- @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
303
-
304
- .qr-id {
305
- color: #32325d !important;
306
- }
307
-
308
- .bg-light--darken {
309
- background-color: $gray-100 !important;
310
- }
311
-
312
- .profile {
313
- .avatar {
314
- img {
315
- width: 178.14px;
316
- height: 163px;
317
- border-radius: 50%;
318
- top: 75%;
319
- }
320
-
321
- .no-image {
322
- display: flex;
323
- justify-content: center;
324
- align-items: center;
325
-
326
- position: absolute;
327
- background-color: #adb5bd;
328
- width: 163px;
329
- height: 163px;
330
- top: 120;
331
- border-radius: 50%;
332
- margin-bottom: 20px;
333
- }
334
- }
335
-
336
- .user-info {
337
- padding: 0 20px;
338
- margin-top: 5px;
339
- }
340
-
341
- p {
342
- font-size: 13px;
343
- font-weight: 400;
344
- color: #62778c;
345
- line-height: 0.85rem;
346
- margin-bottom: 2rem;
347
- }
348
-
349
- span {
350
- font-size: 14px;
351
- color: #8da2b5;
352
- }
353
- }
354
-
355
- .skills {
356
- margin-top: 2.3rem;
357
- margin-bottom: 2.3rem;
358
- }
359
-
360
- .desidered {
361
- margin-bottom: 2.3rem;
362
- }
363
-
364
- .deficiency {
365
- p {
366
- margin-top: 0.25rem;
367
- margin-bottom: 0;
368
- text-transform: capitalize;
369
- }
370
- }
371
-
372
- .languages {
373
- margin-bottom: 2.3rem;
374
- }
375
-
376
- .title-block {
377
- .line {
378
- width: 235px;
379
- height: 0px;
380
- border: 1px solid #ececec5c;
381
- margin-bottom: 0.75rem;
382
- }
383
-
384
- p {
385
- font-size: 13px;
386
- }
387
- }
388
-
389
- .burh-code {
390
- .qr-code {
391
- box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
392
- border-radius: 10px;
393
- }
394
-
395
- p {
396
- font-size: 8px;
397
- font-weight: bold;
398
- }
399
-
400
- span {
401
- font-size: 12px;
402
- font-weight: bold;
403
- }
404
- }
405
-
406
- .socials {
407
- .no-social {
408
- height: 1.39rem;
409
- }
410
- }
411
-
412
- .cv-left {
413
- word-break: initial;
414
- }
415
-
416
- .disable-none {
417
- user-select: none;
418
- }
419
-
420
- .content-left {
421
- width: 25%;
422
- height: auto;
423
- padding: 0 20px;
424
- word-break: break-word !important;
425
- color: #62778c !important;
426
- }
427
-
428
- .icon {
429
- &--blue {
430
- color: #1F8CEB;
431
- }
432
- }
433
- </style>
1
+ <template>
2
+ <div class="bg-white content-left">
3
+ <div class="profile w-100 text-center">
4
+ <div class="avatar">
5
+ <img
6
+ v-if="userData.urlAvatar"
7
+ :src="userData.urlAvatar"
8
+ :alt="userData.name"
9
+ />
10
+ <div v-else class="no-image">
11
+ {{ userData.name }}
12
+ </div>
13
+ </div>
14
+
15
+ <h5 class="mb-0 text-wrap" :class="{ 'mt-5': !userData.urlAvatar }">
16
+ {{ userData.name }} {{ userData.last_name }}
17
+ </h5>
18
+
19
+ <p class="user-info" v-if="userData.user_experience.length > 0">
20
+ {{ userData.user_experience[0].job_title }} em
21
+ {{ userData.user_experience[0].company }}
22
+ </p>
23
+
24
+ <span v-if="userData.user_address">
25
+ <i class="fas fa-map-marker-alt"></i>
26
+ {{ userData.user_address.city_name }} -
27
+ {{ userData.user_address.region_code }}
28
+ </span>
29
+ <br>
30
+ <span>Data de atualização: {{ $moment(userData.updated_at).format('DD/MM/YYYY H:mm')}}</span>
31
+ </div>
32
+
33
+ <div
34
+ v-show="userData.user_skill.length > 0"
35
+ class="skills title-block ml-4"
36
+ >
37
+ <h6 class="mb-0">Habilidades</h6>
38
+ <div class="line"></div>
39
+
40
+ <p
41
+ v-for="(skill, index) in userData.user_skill"
42
+ :key="`skill-${index}`"
43
+ class="ml-1 mt-1 mb-0 text-capitalize"
44
+ >
45
+ {{ skill.skill_word }}
46
+ </p>
47
+ </div>
48
+
49
+ <div
50
+ v-show="userData.user_language.length > 0"
51
+ class="languages title-block mt-3 ml-4"
52
+ >
53
+ <h6 class="mb-0">Idiomas</h6>
54
+ <div class="line"></div>
55
+
56
+ <p
57
+ class="mb-1 text-capitalize"
58
+ v-for="(lan, index) in userData.user_language"
59
+ :key="index"
60
+ >
61
+ {{ lan.language[0].name }} {{ languageLevel(lan.level) }}
62
+ </p>
63
+ </div>
64
+
65
+ <div
66
+ v-show="userData.user_desired_job.length > 0"
67
+ class="desidered title-block mt-3 ml-4"
68
+ >
69
+ <h6 class="mb-0">Cargos desejados</h6>
70
+ <div class="line"></div>
71
+
72
+ <p
73
+ v-for="(des, index) in userData.user_desired_job"
74
+ :key="`skill-${index}`"
75
+ class="ml-1 mt-1 mb-0 text-capitalize"
76
+ >
77
+ {{ des.occupation }}
78
+ </p>
79
+ </div>
80
+
81
+ <div
82
+ class="deficiency title-block mt-3 ml-4"
83
+ v-if="userData.user_deficiency"
84
+ >
85
+ <div class="d-flex align-items-center">
86
+ <i class="fas fa-wheelchair"></i>
87
+ <h6 class="mb-0 ml-2">Deficiência</h6>
88
+ </div>
89
+ <div class="line"></div>
90
+ <p>
91
+ {{ userData.user_deficiency.deficiency_id | allDeficiencies }} -
92
+ {{ userData.user_deficiency.cid }}
93
+ </p>
94
+
95
+ <p v-show="userData.user_deficiency.appliance">
96
+ Acessório: {{ userData.user_deficiency.appliance }}
97
+ </p>
98
+
99
+ <p v-show="userData.user_deficiency.apparatus">
100
+ Necessidade: {{ userData.user_deficiency.apparatus }}
101
+ </p>
102
+
103
+ <p v-show="userData.user_deficiency.course">
104
+ Curso: {{ userData.user_deficiency.course }}
105
+ </p>
106
+
107
+ <p v-show="userData.user_deficiency.note">
108
+ Anotações: {{ userData.user_deficiency.note }}
109
+ </p>
110
+
111
+ <p v-show="userData.user_deficiency.transport === 1">
112
+ Utiliza transporte coletivo
113
+ </p>
114
+
115
+ <p v-show="userData.user_deficiency.vehicle === 1">
116
+ Possuí veículo adaptado
117
+ </p>
118
+
119
+ <p v-show="userData.user_deficiency.escort === 1">
120
+ Precisa de acompanhante
121
+ </p>
122
+ </div>
123
+
124
+ <div class="socials text-center mt-5">
125
+ <a
126
+ :href="baseUrl + '/' + userData.slug.slug"
127
+ class="text-center"
128
+ target="_blank"
129
+ rel="noopener noreferrer"
130
+ >
131
+ <img
132
+ class="no-social"
133
+ src="../../../../assets/images/burhCv.svg"
134
+ alt="Burh"
135
+ />
136
+ </a>
137
+ <a
138
+ v-show="userData.user_complementary_information.facebook_url"
139
+ :href="userData.user_complementary_information.facebook_url"
140
+ target="_blank"
141
+ class="ml-2"
142
+ rel="noopener noreferrer"
143
+ >
144
+ <img
145
+ class="no-social"
146
+ src="../../../../assets/images/facebookCv.svg"
147
+ alt="Facebook"
148
+ />
149
+ </a>
150
+ <a
151
+ v-show="userData.user_complementary_information.linkedin_url"
152
+ :href="userData.user_complementary_information.linkedin_url"
153
+ target="_blank"
154
+ class="ml-2"
155
+ rel="noopener noreferrer"
156
+ >
157
+ <img
158
+ class="no-social"
159
+ src="../../../../assets/images/linkedinCv.svg"
160
+ alt="Linkdin"
161
+ />
162
+ </a>
163
+ <a
164
+ v-show="userData.user_complementary_information.website"
165
+ :href="userData.user_complementary_information.website"
166
+ class="text-center ml-2"
167
+ target="_blank"
168
+ rel="noopener noreferrer"
169
+ >
170
+ <img
171
+ class="no-social"
172
+ src="../../../../assets/images/webCv.svg"
173
+ alt="Web"
174
+ />
175
+ </a>
176
+ </div>
177
+
178
+ <div class="burh-code text-center mt-4">
179
+ <vue-qrcode
180
+ :value="baseUrl + '/' + userData.slug.slug"
181
+ :options="{ width: 98, height: 98 }"
182
+ class="border qr-code"
183
+ ></vue-qrcode>
184
+ <p class="mb-0">Código BURH</p>
185
+ <span class="qr-id">{{ userData.id }}</span>
186
+ </div>
187
+ </div>
188
+ </template>
189
+
190
+ <script>
191
+ import getPrefixes from '~/util/getPrefixes.js';
192
+ import VueQrcode from '@chenfengyuan/vue-qrcode';
193
+
194
+ export default {
195
+ name: 'user-cv-left-side',
196
+ components: {
197
+ VueQrcode
198
+ },
199
+ props: {
200
+ userData: Object,
201
+ baseUrl: String
202
+ },
203
+ methods: {
204
+ getTime(
205
+ { start_year = null, end_year = null, start_month, end_month },
206
+ textHappening = 'Cursando'
207
+ ) {
208
+ const isHappening = !end_month && !end_year;
209
+
210
+ if (isHappening) {
211
+ return textHappening;
212
+ }
213
+
214
+ const dateInitial = this.$moment(
215
+ ['1', start_month.toString(), start_year.toString()],
216
+ 'DD/MM/YYYY'
217
+ );
218
+ const dateDone = this.$moment(
219
+ ['1', end_month.toString(), end_year.toString()],
220
+ 'DD/MM/YYYY'
221
+ );
222
+ const diffDuration = this.$moment.duration(
223
+ dateDone.diff(dateInitial)
224
+ );
225
+ const years = diffDuration.years();
226
+ const months = diffDuration.months();
227
+
228
+ if (years) {
229
+ return years > 1 ? `(${years} anos)` : `(${years} ano)`;
230
+ }
231
+
232
+ return months > 1
233
+ ? `(${months} meses)`
234
+ : months == 1
235
+ ? `(${months} mês)`
236
+ : '';
237
+ },
238
+ languageLevel(level) {
239
+ switch (parseInt(level)) {
240
+ case 1:
241
+ return 'Iniciante';
242
+ case 2:
243
+ return 'Elementar';
244
+ case 3:
245
+ return 'Pré-intermediário';
246
+ case 4:
247
+ return 'Intermediário';
248
+ case 5:
249
+ return 'Intermediário Superior';
250
+ case 6:
251
+ return 'Avançado';
252
+ case 7:
253
+ return 'Fluente';
254
+ default:
255
+ return '';
256
+ }
257
+ },
258
+ treatPhone(phone) {
259
+ if (phone) {
260
+ if (phone == '0' || phone.length < 9 || !phone) {
261
+ return 'não cadastrado';
262
+ }
263
+ }
264
+
265
+ return phone;
266
+ },
267
+ treatCellphone(cellphone) {
268
+ if (cellphone) {
269
+ if (cellphone == '0' || cellphone.length < 11 || !cellphone) {
270
+ return 'não cadastrado';
271
+ }
272
+ }
273
+
274
+ return cellphone;
275
+ },
276
+ handleGetPrefixes(name = '') {
277
+ return getPrefixes(name);
278
+ },
279
+ treatEndDate(end_month, end_year) {
280
+ if (end_month && end_year) {
281
+ return `${end_month}/${end_year}`;
282
+ }
283
+ return '';
284
+ }
285
+ },
286
+ filters: {
287
+ allDeficiencies(id) {
288
+ const typeDeficiency = {
289
+ 1: 'Deficiência Física',
290
+ 2: 'Deficiência Visual',
291
+ 3: 'Deficiência Mental',
292
+ 4: 'Deficiência Auditiva',
293
+ 5: 'Deficiência Fonológica',
294
+ 6: 'Deficiência Múltipla'
295
+ };
296
+
297
+ return typeDeficiency[id] || '-';
298
+ }
299
+ }
300
+ };
301
+ </script>
302
+
303
+ <style lang="scss" scoped>
304
+ @import '@burh/nuxt-core/assets/sass/burh-ds/variables/_colors.scss';
305
+
306
+ .qr-id {
307
+ color: #32325d !important;
308
+ }
309
+
310
+ .bg-light--darken {
311
+ background-color: $gray-100 !important;
312
+ }
313
+
314
+ .profile {
315
+ .avatar {
316
+ img {
317
+ width: 178.14px;
318
+ height: 163px;
319
+ border-radius: 50%;
320
+ top: 75%;
321
+ }
322
+
323
+ .no-image {
324
+ display: flex;
325
+ justify-content: center;
326
+ align-items: center;
327
+
328
+ position: absolute;
329
+ background-color: #adb5bd;
330
+ width: 163px;
331
+ height: 163px;
332
+ top: 120;
333
+ border-radius: 50%;
334
+ margin-bottom: 20px;
335
+ }
336
+ }
337
+
338
+ .user-info {
339
+ padding: 0 20px;
340
+ margin-top: 5px;
341
+ }
342
+
343
+ p {
344
+ font-size: 13px;
345
+ font-weight: 400;
346
+ color: #62778c;
347
+ line-height: 0.85rem;
348
+ margin-bottom: 2rem;
349
+ }
350
+
351
+ span {
352
+ font-size: 14px;
353
+ color: #8da2b5;
354
+ }
355
+ }
356
+
357
+ .skills {
358
+ margin-top: 2.3rem;
359
+ margin-bottom: 2.3rem;
360
+ }
361
+
362
+ .desidered {
363
+ margin-bottom: 2.3rem;
364
+ }
365
+
366
+ .deficiency {
367
+ p {
368
+ margin-top: 0.25rem;
369
+ margin-bottom: 0;
370
+ text-transform: capitalize;
371
+ }
372
+ }
373
+
374
+ .languages {
375
+ margin-bottom: 2.3rem;
376
+ }
377
+
378
+ .title-block {
379
+ .line {
380
+ width: 235px;
381
+ height: 0px;
382
+ border: 1px solid #ececec5c;
383
+ margin-bottom: 0.75rem;
384
+ }
385
+
386
+ p {
387
+ font-size: 13px;
388
+ }
389
+ }
390
+
391
+ .burh-code {
392
+ .qr-code {
393
+ box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
394
+ border-radius: 10px;
395
+ }
396
+
397
+ p {
398
+ font-size: 8px;
399
+ font-weight: bold;
400
+ }
401
+
402
+ span {
403
+ font-size: 12px;
404
+ font-weight: bold;
405
+ }
406
+ }
407
+
408
+ .socials {
409
+ .no-social {
410
+ height: 1.39rem;
411
+ }
412
+ }
413
+
414
+ .cv-left {
415
+ word-break: initial;
416
+ }
417
+
418
+ .disable-none {
419
+ user-select: none;
420
+ }
421
+
422
+ .content-left {
423
+ width: 25%;
424
+ height: auto;
425
+ padding: 0 20px;
426
+ word-break: break-word !important;
427
+ color: #62778c !important;
428
+ }
429
+ </style>