@saooti/octopus-sdk 40.1.21 → 40.2.0
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/index.ts +8 -1
- package/package.json +1 -1
- package/plateform.conf +1 -1
- package/src/components/composable/player/usePlayerLive.ts +1 -1
- package/src/components/display/accessibility/AccessibilityModal.vue +7 -7
- package/src/components/display/comments/CommentSection.vue +1 -1
- package/src/components/display/emission/EmissionPlayerItem.vue +1 -1
- package/src/components/display/list/SwiperList.vue +1 -1
- package/src/components/display/live/LiveList.vue +1 -1
- package/src/components/display/live/RadioList.vue +1 -1
- package/src/components/display/podcasts/PodcastImage.vue +17 -9
- package/src/components/display/podcasts/PodcastItemInfo.vue +1 -1
- package/src/components/display/podcasts/PodcastModuleBox.vue +121 -118
- package/src/components/display/podcasts/PodcastRawTranscript.vue +5 -18
- package/src/components/display/sharing/PlayerAnonymousModal.vue +54 -0
- package/src/components/display/sharing/QrCode.vue +36 -35
- package/src/components/display/sharing/ShareAnonymous.vue +290 -0
- package/src/components/display/sharing/ShareDistribution.vue +8 -27
- package/src/components/display/sharing/ShareNewsletter.vue +205 -0
- package/src/components/display/sharing/ShareSocialsButtons.vue +110 -0
- package/src/components/display/sharing/SubscribeButtons.vue +2 -0
- package/src/components/form/ClassicCopyButton.vue +65 -0
- package/src/components/misc/ClassicNav.vue +9 -4
- package/src/components/misc/ClassicPopover.vue +1 -1
- package/src/components/misc/modal/ClipboardModal.vue +9 -11
- package/src/components/misc/modal/NewsletterModal.vue +14 -192
- package/src/components/misc/modal/QrCodeModal.vue +2 -1
- package/src/components/pages/EmissionPage.vue +47 -61
- package/src/components/pages/ParticipantPage.vue +17 -7
- package/src/components/pages/PlaylistPage.vue +13 -9
- package/src/components/pages/PodcastPage.vue +15 -38
- package/src/components/pages/RadioPage.vue +12 -7
- package/src/components/pages/VideoPage.vue +0 -3
- package/src/locale/de.ts +5 -2
- package/src/locale/en.ts +5 -2
- package/src/locale/es.ts +5 -2
- package/src/locale/fr.ts +9 -6
- package/src/locale/it.ts +5 -2
- package/src/locale/sl.ts +5 -2
- package/src/router/router.ts +3 -8
- package/src/stores/class/config/commentsConfig.ts +2 -2
- package/src/style/bootstrap.scss +6 -14
- package/src/components/display/sharing/ShareButtons.vue +0 -351
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<section class="page-box">
|
|
3
|
-
<template v-if="loaded && !error">
|
|
3
|
+
<template v-if="loaded && !error && radio">
|
|
4
4
|
<PodcastmakerHeader
|
|
5
5
|
v-if="isPodcastmaker"
|
|
6
6
|
:page-title="$t('Radio')"
|
|
@@ -14,7 +14,10 @@
|
|
|
14
14
|
<section class="module-box">
|
|
15
15
|
<div class="mb-5 description-text">
|
|
16
16
|
<RadioImage :radio="radio" />
|
|
17
|
-
<
|
|
17
|
+
<div class="d-flex align-items-center justify-content-between">
|
|
18
|
+
<h2>{{ radio.name }}</h2>
|
|
19
|
+
<ShareAnonymous class="d-flex justify-content-end flex-grow-1" :organisation-id="radio.organisationId"/>
|
|
20
|
+
</div>
|
|
18
21
|
<div v-if="radio.description">
|
|
19
22
|
{{ radio.description }}
|
|
20
23
|
</div>
|
|
@@ -22,13 +25,13 @@
|
|
|
22
25
|
<RadioCurrently :radio="radio" />
|
|
23
26
|
<EditBoxRadio v-if="editRight" :radio="radio" />
|
|
24
27
|
</section>
|
|
28
|
+
<ShareSocialsButtons :organisation-id="radio.organisationId" />
|
|
25
29
|
<RadioPlanning :radio="radio" />
|
|
26
30
|
<SharePlayerRadio
|
|
27
|
-
v-if="
|
|
31
|
+
v-if="editRight"
|
|
28
32
|
:canal="radio"
|
|
29
33
|
:organisation-id="authOrgaId"
|
|
30
34
|
/>
|
|
31
|
-
<ShareButtons :organisation-id="radio.organisationId" />
|
|
32
35
|
</div>
|
|
33
36
|
</template>
|
|
34
37
|
<ClassicLoading
|
|
@@ -53,8 +56,8 @@ import { useAuthStore } from "../../stores/AuthStore";
|
|
|
53
56
|
const SharePlayerRadio = defineAsyncComponent(
|
|
54
57
|
() => import("../display/sharing/SharePlayerRadio.vue"),
|
|
55
58
|
);
|
|
56
|
-
const
|
|
57
|
-
() => import("../display/sharing/
|
|
59
|
+
const ShareSocialsButtons = defineAsyncComponent(
|
|
60
|
+
() => import("../display/sharing/ShareSocialsButtons.vue"),
|
|
58
61
|
);
|
|
59
62
|
const EditBoxRadio = defineAsyncComponent(
|
|
60
63
|
() => import("@/components/display/edit/EditBoxRadio.vue"),
|
|
@@ -71,16 +74,18 @@ const RadioPlanning = defineAsyncComponent(
|
|
|
71
74
|
const PodcastmakerHeader = defineAsyncComponent(
|
|
72
75
|
() => import("../display/podcastmaker/PodcastmakerHeader.vue"),
|
|
73
76
|
);
|
|
77
|
+
const ShareAnonymous = defineAsyncComponent(() => import("../display/sharing/ShareAnonymous.vue"));
|
|
74
78
|
export default defineComponent({
|
|
75
79
|
components: {
|
|
76
80
|
SharePlayerRadio,
|
|
77
|
-
|
|
81
|
+
ShareSocialsButtons,
|
|
78
82
|
EditBoxRadio,
|
|
79
83
|
ClassicLoading,
|
|
80
84
|
RadioCurrently,
|
|
81
85
|
RadioImage,
|
|
82
86
|
RadioPlanning,
|
|
83
87
|
PodcastmakerHeader,
|
|
88
|
+
ShareAnonymous
|
|
84
89
|
},
|
|
85
90
|
props: {
|
|
86
91
|
canalId: { default: undefined, type: Number },
|
|
@@ -96,7 +96,6 @@ import ClassicLoading from "../form/ClassicLoading.vue";
|
|
|
96
96
|
import classicApi from "../../api/classicApi";
|
|
97
97
|
import { Podcast } from "@/stores/class/general/podcast";
|
|
98
98
|
import ClassicNav from "../misc/ClassicNav.vue";
|
|
99
|
-
import {useErrorHandler} from "../composable/useErrorHandler";
|
|
100
99
|
import {useSeoTitleUrl} from "../composable/route/useSeoTitleUrl";
|
|
101
100
|
import {usePodcastView} from "../composable/podcasts/usePodcastView";
|
|
102
101
|
import { computed, defineAsyncComponent, onBeforeUnmount, Ref, ref, watch } from "vue";
|
|
@@ -153,8 +152,6 @@ const {
|
|
|
153
152
|
} = usePodcastView(podcast, podcastConference);
|
|
154
153
|
|
|
155
154
|
const { updatePathParams } = useSeoTitleUrl();
|
|
156
|
-
const {handle403} = useErrorHandler();
|
|
157
|
-
|
|
158
155
|
const authStore = useAuthStore();
|
|
159
156
|
const apiStore = useApiStore();
|
|
160
157
|
const generalStore = useGeneralStore();
|
package/src/locale/de.ts
CHANGED
|
@@ -201,7 +201,6 @@ export default {
|
|
|
201
201
|
"select productor": "Produzenten wählen",
|
|
202
202
|
"Share newsletter": "Einen Newsletter teilen",
|
|
203
203
|
"Configure your Newsletter tile": "Konfigurieren Sie Ihre Newsletter-Kachel",
|
|
204
|
-
"Copy and embed the HTML code into your email tool": "Kopieren Sie den HTML-Code und betten Sie ihn in Ihr E-Mail-Tool ein",
|
|
205
204
|
"Listen this episode": "Diese Folge anhören",
|
|
206
205
|
"Choose main color": "Wählen Sie die Farbe der Newsletter-Modulelemente",
|
|
207
206
|
"Octopus is ACPM Podcast accredited": "Saooti Play ist von der ACPM zertifiziert",
|
|
@@ -274,7 +273,7 @@ export default {
|
|
|
274
273
|
Refresh: "Aktualisieren",
|
|
275
274
|
"See associated article": "Artikel lesen",
|
|
276
275
|
"Display associated article": "Zugehörigen Artikel anzeigen",
|
|
277
|
-
"Copy this page URL": "
|
|
276
|
+
"Copy this page URL": "Seiten-URL kopieren",
|
|
278
277
|
"Custom version": "Benutzerdefiniert",
|
|
279
278
|
All: "Alle",
|
|
280
279
|
"By category": "Nach IAB-Kategorie",
|
|
@@ -412,4 +411,8 @@ export default {
|
|
|
412
411
|
"Preview":"Vorschau",
|
|
413
412
|
"Save":"Speichern",
|
|
414
413
|
"Search for keyword": "Suche nach Schlüsselwort: {tag}",
|
|
414
|
+
"And paste it in your newsletter":"Und fügen Sie es in Ihren Newsletter ein 😉",
|
|
415
|
+
"Code copied!":"Code kopiert!",
|
|
416
|
+
"Copied!":"Kopiert!",
|
|
417
|
+
"Color of the QR Code": "Farbe des QR-Codes",
|
|
415
418
|
}
|
package/src/locale/en.ts
CHANGED
|
@@ -199,7 +199,6 @@ export default {
|
|
|
199
199
|
"select productor": "Select Producer",
|
|
200
200
|
"Share newsletter": "Share a newsletter",
|
|
201
201
|
"Configure your Newsletter tile": "Configure your Newsletter tile",
|
|
202
|
-
"Copy and embed the HTML code into your email tool": "Copy and embed the HTML code into your email tool",
|
|
203
202
|
"Listen this episode": "Listen to this episode",
|
|
204
203
|
"Choose main color": "Choose the color of the newsletter module elements",
|
|
205
204
|
"Octopus is ACPM Podcast accredited": "Saooti Play is ACPM accredited",
|
|
@@ -269,7 +268,7 @@ export default {
|
|
|
269
268
|
Refresh: "Refresh",
|
|
270
269
|
"See associated article": "Read the article",
|
|
271
270
|
"Display associated article": "Display associated article",
|
|
272
|
-
"Copy this page URL": "Copy
|
|
271
|
+
"Copy this page URL": "Copy the page URL",
|
|
273
272
|
"Custom version": "Custom version",
|
|
274
273
|
All: "All",
|
|
275
274
|
"By category": "By IAB category",
|
|
@@ -415,4 +414,8 @@ export default {
|
|
|
415
414
|
"Preview":"Preview",
|
|
416
415
|
"Save":"Save",
|
|
417
416
|
"Search for keyword": "Search for keyword: {tag}",
|
|
417
|
+
"And paste it in your newsletter":"And paste it in your newsletter 😉",
|
|
418
|
+
"Code copied!":"Code copied!",
|
|
419
|
+
"Copied!":"Copied!",
|
|
420
|
+
"Color of the QR Code": "Color of the QR Code",
|
|
418
421
|
};
|
package/src/locale/es.ts
CHANGED
|
@@ -200,7 +200,6 @@ export default {
|
|
|
200
200
|
"select productor": "Seleccionar productor",
|
|
201
201
|
"Share newsletter": "Compartir newsletter",
|
|
202
202
|
"Configure your Newsletter tile": "Configure el mosaico de su boletín",
|
|
203
|
-
"Copy and embed the HTML code into your email tool": "Copie e incruste el código HTML en su herramienta de correo electrónico",
|
|
204
203
|
"Listen this episode": "Escuchar este episodio",
|
|
205
204
|
"Choose main color": "Elija el color de los elementos del módulo de newsletter",
|
|
206
205
|
"Octopus is ACPM Podcast accredited":
|
|
@@ -274,7 +273,7 @@ export default {
|
|
|
274
273
|
Refresh: "Volver a cargar",
|
|
275
274
|
"See associated article": "Leer el artículo",
|
|
276
275
|
"Display associated article": "Mostrar el artículo asociado",
|
|
277
|
-
"Copy this page URL": "Copiar
|
|
276
|
+
"Copy this page URL": "Copiar URL de la página",
|
|
278
277
|
"Custom version": "Versión personalizada",
|
|
279
278
|
All: "Todos",
|
|
280
279
|
"By category": "Por categoría IAB",
|
|
@@ -413,4 +412,8 @@ export default {
|
|
|
413
412
|
"Preview":"Avance",
|
|
414
413
|
"Save":"Ahorrar",
|
|
415
414
|
"Search for keyword": "Buscar palabra clave: {etiqueta}",
|
|
415
|
+
"And paste it in your newsletter":"Y pégalo en tu boletín informativo 😉",
|
|
416
|
+
"Code copied!":"¡Código copiado!",
|
|
417
|
+
"Copied!":"¡Copiado!",
|
|
418
|
+
"Color of the QR Code": "Color del código QR",
|
|
416
419
|
}
|
package/src/locale/fr.ts
CHANGED
|
@@ -201,9 +201,8 @@ export default {
|
|
|
201
201
|
Debriefing: "Debriefing",
|
|
202
202
|
Publishing: "Publication",
|
|
203
203
|
"select productor": "Choisir un producteur",
|
|
204
|
-
"Share newsletter": "
|
|
204
|
+
"Share newsletter": "Intégrer dans votre newsletter",
|
|
205
205
|
"Configure your Newsletter tile": "Configurez votre vignette Newsletter",
|
|
206
|
-
"Copy and embed the HTML code into your email tool": "Copiez et intégrez le code HTML dans votre outil d'e-mailing",
|
|
207
206
|
"Listen this episode": "Écouter ce podcast",
|
|
208
207
|
"Choose main color": "Choisir la couleur des éléments du module",
|
|
209
208
|
"Octopus is ACPM Podcast accredited": "Saooti Play est accrédité ACPM Podcasts",
|
|
@@ -276,7 +275,7 @@ export default {
|
|
|
276
275
|
Refresh: "Rafraichir",
|
|
277
276
|
"See associated article": "Lire l'article",
|
|
278
277
|
"Display associated article": "Afficher l'article associé",
|
|
279
|
-
"Copy this page URL": "Copier
|
|
278
|
+
"Copy this page URL": "Copier l'URL de la page",
|
|
280
279
|
"Custom version": "Version customisée",
|
|
281
280
|
All: "Tous",
|
|
282
281
|
"By category": "Selon la catégorie IAB",
|
|
@@ -352,9 +351,9 @@ export default {
|
|
|
352
351
|
"Share in one click":"Partager en un clic",
|
|
353
352
|
"Chaptering":"Chapitrage",
|
|
354
353
|
"Listen to the latest episode":"Écouter le dernier épisode",
|
|
355
|
-
"Share the episode in your newsletter": "
|
|
356
|
-
"Share the series in your newsletter": "
|
|
357
|
-
"Share the playlist in your newsletter": "
|
|
354
|
+
"Share the episode in your newsletter": "Intégrez l'épisode dans votre newsletter",
|
|
355
|
+
"Share the series in your newsletter": "Intégrez l'émission dans votre newsletter",
|
|
356
|
+
"Share the playlist in your newsletter": "Intégrez la playlist dans votre newsletter",
|
|
358
357
|
"Listen to all episodes":"Écouter tous les épisodes",
|
|
359
358
|
"Newsletter elements":"Pictogramme Play, nom de l'émission, Voir plus",
|
|
360
359
|
"Choose text color":"Choisir la couleur du texte",
|
|
@@ -422,4 +421,8 @@ export default {
|
|
|
422
421
|
"Preview":"Aperçu",
|
|
423
422
|
"Save":"Sauvegarder",
|
|
424
423
|
"Search for keyword": "Recherche pour le mot-clé: {tag}",
|
|
424
|
+
"And paste it in your newsletter":"Et collez-le dans votre newsletter 😉",
|
|
425
|
+
"Code copied!":"Code copié !",
|
|
426
|
+
"Copied!":"Copié !",
|
|
427
|
+
"Color of the QR Code": "Couleur du Qr Code",
|
|
425
428
|
};
|
package/src/locale/it.ts
CHANGED
|
@@ -198,7 +198,6 @@ export default{
|
|
|
198
198
|
'select productor': 'Seleziona producer',
|
|
199
199
|
'Share newsletter': "Condividi newsletter",
|
|
200
200
|
"Configure your Newsletter tile": 'Configura il riquadro Newsletter',
|
|
201
|
-
"Copy and embed the HTML code into your email tool": 'Copia e incorpora il codice HTML nel tuo strumento di posta elettronica',
|
|
202
201
|
'Listen this episode': 'Ascolta questo episodio',
|
|
203
202
|
'Choose main color': 'Scegli il colore degli elementi del modulo newsletter',
|
|
204
203
|
'Octopus is ACPM Podcast accredited': 'Saooti Play è accreditata ACPM Podcast',
|
|
@@ -271,7 +270,7 @@ export default{
|
|
|
271
270
|
'Refresh': 'Aggiorna',
|
|
272
271
|
'See associated article':"Leggi l'articolo",
|
|
273
272
|
"Display associated article":"Mostra articolo associato",
|
|
274
|
-
"Copy this page URL":"Copia
|
|
273
|
+
"Copy this page URL":"Copia l'URL della pagina",
|
|
275
274
|
"Custom version":"Versione customizzata",
|
|
276
275
|
"All":"Tutto",
|
|
277
276
|
'By category': 'Per categoria',
|
|
@@ -409,4 +408,8 @@ export default{
|
|
|
409
408
|
"Preview":"Anteprima",
|
|
410
409
|
"Save":"Salva",
|
|
411
410
|
"Search for keyword": "Cerca parola chiave: {tag}",
|
|
411
|
+
"And paste it in your newsletter":"E incollalo nella tua newsletter 😉",
|
|
412
|
+
"Code copied!":"Codice copiato!",
|
|
413
|
+
"Copied!":"Copiato!",
|
|
414
|
+
"Color of the QR Code": "Colore del codice QR",
|
|
412
415
|
};
|
package/src/locale/sl.ts
CHANGED
|
@@ -195,7 +195,6 @@ export default {
|
|
|
195
195
|
"select productor": "Izberi producenta",
|
|
196
196
|
"Share newsletter": "Deli glasilo",
|
|
197
197
|
"Configure your Newsletter tile": "Konfigurirajte svojo ploščico Newsletter",
|
|
198
|
-
"Copy and embed the HTML code into your email tool": "Kopirajte in vdelajte kodo HTML v svoje e-poštno orodje",
|
|
199
198
|
"Listen this episode": "Poslušajte to epizodo",
|
|
200
199
|
"Choose main color": "Izberite barvo elementov modula newsletter",
|
|
201
200
|
"Octopus is ACPM Podcast accredited":
|
|
@@ -266,7 +265,7 @@ export default {
|
|
|
266
265
|
Refresh: "Osveži",
|
|
267
266
|
"See associated article": "Preberi članek",
|
|
268
267
|
"Display associated article": "Prikaži povezan vir",
|
|
269
|
-
"Copy this page URL": "Kopiraj
|
|
268
|
+
"Copy this page URL": "Kopiraj URL strani",
|
|
270
269
|
"Custom version": "Prilagojena različica",
|
|
271
270
|
All: "Vse",
|
|
272
271
|
"By category": "Po kategoriji IAB",
|
|
@@ -404,4 +403,8 @@ export default {
|
|
|
404
403
|
"Preview":"Predogled",
|
|
405
404
|
"Save":"Shrani",
|
|
406
405
|
"Search for keyword": "Iskanje ključne besede: {tag}",
|
|
406
|
+
"And paste it in your newsletter":"In ga prilepite v svoje glasilo 😉",
|
|
407
|
+
"Code copied!":"Koda kopirana!",
|
|
408
|
+
"Copied!":"Kopirano!",
|
|
409
|
+
"Color of the QR Code": "Barva kode QR",
|
|
407
410
|
}
|
package/src/router/router.ts
CHANGED
|
@@ -302,11 +302,6 @@ const routes: Array<RouteRecordRaw> = [
|
|
|
302
302
|
path: "/main/pub/contact",
|
|
303
303
|
component: Home,
|
|
304
304
|
},
|
|
305
|
-
{
|
|
306
|
-
path: "/main/priv/share",
|
|
307
|
-
name: "advancedShare",
|
|
308
|
-
component: Home,
|
|
309
|
-
},
|
|
310
305
|
{
|
|
311
306
|
path: "/main/pub/cgu",
|
|
312
307
|
component: Home,
|
|
@@ -367,7 +362,7 @@ async function changeOrgaFilter(orgaFilter: string, filterStore: any){
|
|
|
367
362
|
isLive: isLive,
|
|
368
363
|
});
|
|
369
364
|
}
|
|
370
|
-
|
|
365
|
+
let fetchMyOrgaActive = false;
|
|
371
366
|
router.beforeResolve(async () =>{
|
|
372
367
|
fetchMyOrgaActive = false;
|
|
373
368
|
});
|
|
@@ -380,8 +375,8 @@ router.beforeEach(async (to, from) => {
|
|
|
380
375
|
const authStore = useAuthStore();
|
|
381
376
|
const filterStore = useFilterStore();
|
|
382
377
|
|
|
383
|
-
|
|
384
|
-
|
|
378
|
+
const isSamePath = to.matched[0]?.path === from.matched[0]?.path && to.path.includes(from.path);
|
|
379
|
+
let orgaToFocus = isSamePath ? (to.query.productor?.toString() ?? undefined) : undefined;
|
|
385
380
|
|
|
386
381
|
if(authStore.authProfile){
|
|
387
382
|
if(!isSamePath && !fetchMyOrgaActive){
|
|
@@ -34,8 +34,8 @@ export function defaultCommentsConfig(inherited: boolean): CommentsConfig {
|
|
|
34
34
|
},
|
|
35
35
|
commentLikes: {
|
|
36
36
|
authRequired: true,
|
|
37
|
-
dislikeEnabled:
|
|
38
|
-
likeEnabled:
|
|
37
|
+
dislikeEnabled: false,
|
|
38
|
+
likeEnabled: false,
|
|
39
39
|
},
|
|
40
40
|
comments: {
|
|
41
41
|
authRequired: true,
|
package/src/style/bootstrap.scss
CHANGED
|
@@ -20,7 +20,7 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
h1,.h1{
|
|
23
|
-
font-size: 1.
|
|
23
|
+
font-size: 1.5rem;
|
|
24
24
|
text-align: center;
|
|
25
25
|
color: var(--octopus-gray-text);
|
|
26
26
|
margin-bottom: 1rem;
|
|
@@ -32,35 +32,27 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
h2,.h2{
|
|
35
|
-
font-size: 1.
|
|
35
|
+
font-size: 1.1rem;
|
|
36
36
|
|
|
37
37
|
@media (width <= 500px){
|
|
38
38
|
font-size: 1rem;
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
.big-h2{
|
|
43
|
-
font-size: 1.5rem;
|
|
44
|
-
|
|
45
|
-
@media (width <= 500px){
|
|
46
|
-
font-size: 1.1rem;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
42
|
h3,.h3{
|
|
51
|
-
font-size: 1.
|
|
43
|
+
font-size: 1.05rem;
|
|
52
44
|
}
|
|
53
45
|
|
|
54
46
|
h4,.h4{
|
|
55
|
-
font-size:
|
|
47
|
+
font-size: 1rem;
|
|
56
48
|
}
|
|
57
49
|
|
|
58
50
|
h5,.h5{
|
|
59
|
-
font-size: .
|
|
51
|
+
font-size: .80rem;
|
|
60
52
|
}
|
|
61
53
|
|
|
62
54
|
h6,.h6{
|
|
63
|
-
font-size: .
|
|
55
|
+
font-size: .60rem;
|
|
64
56
|
display: flex;
|
|
65
57
|
align-items: center;
|
|
66
58
|
font-weight: normal;
|