lau-ecom-design-system 1.0.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lau-ecom-design-system.esm.js +2472 -980
- package/dist/lau-ecom-design-system.min.js +1 -1
- package/dist/lau-ecom-design-system.ssr.js +1768 -408
- package/dist/style.css +405 -27
- package/package.json +1 -1
- package/src/assets/Rambla/Rambla.otf +0 -0
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookies.vue +105 -106
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfig.vue +191 -159
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfigAccordion.vue +80 -66
- package/src/components/LauEcomButton/LauEcomButton.vue +192 -160
- package/src/components/LauEcomCheckbox/LauEcomCheckbox.vue +18 -3
- package/src/components/LauEcomDisclamer/LauEcomDisclamer.vue +82 -0
- package/src/components/LauEcomFooter/LauEcomFooter.vue +194 -0
- package/src/components/LauEcomFooter/LauEcomSubFooter.vue +113 -0
- package/src/components/LauEcomFooter/LauEcomSubFooterCategory.vue +127 -0
- package/src/components/LauEcomIcon/LauEcomCbtIconChart.vue +53 -0
- package/src/components/LauEcomIcon/LauEcomCbtIconGirlReading.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomCbtIconWorldwide.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomCbtLogoCbtVer.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomCbtLogoLaureate.vue +110 -0
- package/src/components/LauEcomIcon/LauEcomCbtLogoUpcWhite.vue +33 -0
- package/src/components/LauEcomIcon/LauEcomCoreIconBook.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomCoreIconFileCode.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomCoreIconNavClose.vue +29 -29
- package/src/components/LauEcomIcon/LauEcomLogoWasc.vue +456 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconCertificate.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconCheckCircle.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconCreditCard.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconExclamationCircle.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconGlobe.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconInfoCircle.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconInnova.vue +122 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconVirtualClass.vue +39 -0
- package/src/components/LauEcomInput/LauEcomInput.vue +6 -6
- package/src/components/LauEcomRadioButton/LauEcomRadioButton.vue +36 -8
- package/src/components/LauEcomRtb/LauEcomRtb.vue +92 -0
- package/src/components/LauEcomStepbar/LauEcomStepbar.vue +4 -0
- package/src/components/LauEcomStepbar/LauEcomStepbarItem.vue +50 -7
- package/src/components/LauEcomSwitch/LauEcomSwitch.vue +113 -94
- package/src/components/LauEcomTab/LauEcomTab.vue +113 -0
- package/src/components/LauEcomTextButton/LauEcomTextButton.vue +139 -0
- package/src/enums/index.ts +3 -2
- package/src/enums/instance.ts +5 -5
- package/src/enums/size.ts +1 -1
- package/src/enums/state.ts +6 -0
package/package.json
CHANGED
Binary file
|
@@ -1,106 +1,105 @@
|
|
1
|
-
<script lang="ts" setup>
|
2
|
-
import { computed } from "vue";
|
3
|
-
import LauEcomButton from "../LauEcomButton/LauEcomButton.vue";
|
4
|
-
import
|
5
|
-
import { LauEcomInstance } from "../../enums";
|
6
|
-
|
7
|
-
interface Props {
|
8
|
-
instance?: LauEcomInstance;
|
9
|
-
}
|
10
|
-
|
11
|
-
const props = withDefaults(defineProps<Props>(), {
|
12
|
-
instance: LauEcomInstance.Upc,
|
13
|
-
});
|
14
|
-
|
15
|
-
const emit = defineEmits(["onConfigCookies", "onAccept"]);
|
16
|
-
|
17
|
-
const handleConfigCookies = () => {
|
18
|
-
emit("onConfigCookies");
|
19
|
-
};
|
20
|
-
|
21
|
-
const handleAccept = () => {
|
22
|
-
emit("onAccept");
|
23
|
-
};
|
24
|
-
|
25
|
-
const lauEcomBannerCookiesClasses = computed(() => {
|
26
|
-
return {
|
27
|
-
"lau-ecom-cookies": true,
|
28
|
-
"lau-ecom-cookies--upc": props.instance === LauEcomInstance.Upc,
|
29
|
-
"lau-ecom-cookies--cib": props.instance === LauEcomInstance.Cibertec,
|
30
|
-
};
|
31
|
-
});
|
32
|
-
|
33
|
-
const lauEcomBannerCookiesTextClasses = computed(() => {
|
34
|
-
return {
|
35
|
-
"lau-ecom-text": true,
|
36
|
-
"core-font-body-reg-04-16px": true,
|
37
|
-
"lau-ecom-text--upc": props.instance === LauEcomInstance.Upc,
|
38
|
-
"lau-ecom-text--cib": props.instance === LauEcomInstance.Cibertec,
|
39
|
-
};
|
40
|
-
});
|
41
|
-
</script>
|
42
|
-
|
43
|
-
<template>
|
44
|
-
<div :class="lauEcomBannerCookiesClasses">
|
45
|
-
<p :class="lauEcomBannerCookiesTextClasses">
|
46
|
-
Este sitio web utiliza cookies gracias a esto podemos personalizar los
|
47
|
-
ingresos a la web en futuras visitas y brindarte una mejor experiencia
|
48
|
-
dentro de nuestro sitio.
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
dsEcom-
|
69
|
-
dsEcom-
|
70
|
-
dsEcom-
|
71
|
-
dsEcom-
|
72
|
-
dsEcom-
|
73
|
-
dsEcom-
|
74
|
-
dsEcom-
|
75
|
-
mobiles:dsEcom-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
dsEcom-w-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
dsEcom-
|
104
|
-
|
105
|
-
|
106
|
-
</style>
|
1
|
+
<script lang="ts" setup>
|
2
|
+
import { computed } from "vue";
|
3
|
+
import LauEcomButton from "../LauEcomButton/LauEcomButton.vue";
|
4
|
+
import LauEcomTextButton from "../LauEcomTextButton/LauEcomTextButton.vue";
|
5
|
+
import { LauEcomInstance } from "../../enums";
|
6
|
+
|
7
|
+
interface Props {
|
8
|
+
instance?: LauEcomInstance;
|
9
|
+
}
|
10
|
+
|
11
|
+
const props = withDefaults(defineProps<Props>(), {
|
12
|
+
instance: LauEcomInstance.Upc,
|
13
|
+
});
|
14
|
+
|
15
|
+
const emit = defineEmits(["onConfigCookies", "onAccept"]);
|
16
|
+
|
17
|
+
const handleConfigCookies = () => {
|
18
|
+
emit("onConfigCookies");
|
19
|
+
};
|
20
|
+
|
21
|
+
const handleAccept = () => {
|
22
|
+
emit("onAccept");
|
23
|
+
};
|
24
|
+
|
25
|
+
const lauEcomBannerCookiesClasses = computed(() => {
|
26
|
+
return {
|
27
|
+
"lau-ecom-cookies": true,
|
28
|
+
"lau-ecom-cookies--upc": props.instance === LauEcomInstance.Upc,
|
29
|
+
"lau-ecom-cookies--cib": props.instance === LauEcomInstance.Cibertec,
|
30
|
+
};
|
31
|
+
});
|
32
|
+
|
33
|
+
const lauEcomBannerCookiesTextClasses = computed(() => {
|
34
|
+
return {
|
35
|
+
"lau-ecom-text": true,
|
36
|
+
"core-font-body-reg-04-16px": true,
|
37
|
+
"lau-ecom-text--upc": props.instance === LauEcomInstance.Upc,
|
38
|
+
"lau-ecom-text--cib": props.instance === LauEcomInstance.Cibertec,
|
39
|
+
};
|
40
|
+
});
|
41
|
+
</script>
|
42
|
+
|
43
|
+
<template>
|
44
|
+
<div :class="lauEcomBannerCookiesClasses">
|
45
|
+
<p :class="lauEcomBannerCookiesTextClasses">
|
46
|
+
Este sitio web utiliza cookies gracias a esto podemos personalizar los
|
47
|
+
ingresos a la web en futuras visitas y brindarte una mejor experiencia
|
48
|
+
dentro de nuestro sitio.
|
49
|
+
<a class="core-font-link-02-16px dsEcom-text-core-color-blue-60-base"
|
50
|
+
>Conoce más</a
|
51
|
+
>
|
52
|
+
</p>
|
53
|
+
<div class="lau-ecom-buttons">
|
54
|
+
<LauEcomTextButton :instance="instance" @on-click="handleConfigCookies">
|
55
|
+
Configurar cookies
|
56
|
+
</LauEcomTextButton>
|
57
|
+
<LauEcomButton :instance="instance" @on-click="handleAccept">
|
58
|
+
Aceptar
|
59
|
+
</LauEcomButton>
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
</template>
|
63
|
+
|
64
|
+
<style scoped>
|
65
|
+
.lau-ecom-cookies {
|
66
|
+
@apply dsEcom-w-full
|
67
|
+
dsEcom-py-[32px]
|
68
|
+
dsEcom-px-[64px]
|
69
|
+
dsEcom-flex
|
70
|
+
dsEcom-justify-between
|
71
|
+
dsEcom-items-center
|
72
|
+
dsEcom-gap-20
|
73
|
+
dsEcom-shadow-upc-shadow-prominent
|
74
|
+
mobiles:dsEcom-flex-col
|
75
|
+
mobiles:dsEcom-px-[24px];
|
76
|
+
}
|
77
|
+
|
78
|
+
.lau-ecom-cookies--upc {
|
79
|
+
@apply dsEcom-text-upc-color-neutral-20;
|
80
|
+
}
|
81
|
+
|
82
|
+
.lau-ecom-cookies--cib {
|
83
|
+
@apply dsEcom-text-color-cbt-color-neutral-20;
|
84
|
+
}
|
85
|
+
|
86
|
+
.lau-ecom-text {
|
87
|
+
@apply dsEcom-block
|
88
|
+
dsEcom-w-[883px]
|
89
|
+
mobiles:dsEcom-w-full;
|
90
|
+
}
|
91
|
+
|
92
|
+
.lau-ecom-text--upc {
|
93
|
+
@apply dsEcom-text-upc-color-neutral-90;
|
94
|
+
}
|
95
|
+
|
96
|
+
.lau-ecom-text--cib {
|
97
|
+
@apply dsEcom-text-color-cbt-color-neutral-80;
|
98
|
+
}
|
99
|
+
|
100
|
+
.lau-ecom-buttons {
|
101
|
+
@apply dsEcom-flex
|
102
|
+
dsEcom-gap-8
|
103
|
+
mobiles:dsEcom-self-end;
|
104
|
+
}
|
105
|
+
</style>
|
@@ -1,159 +1,191 @@
|
|
1
|
-
<script lang="ts" setup>
|
2
|
-
import { computed, reactive } from "vue";
|
3
|
-
import LauEcomButton from "../LauEcomButton/LauEcomButton.vue";
|
4
|
-
import { LauEcomButtonType } from "../LauEcomButton/types";
|
5
|
-
import { LauEcomCoreIconNavClose } from "../LauEcomIcon";
|
6
|
-
import LauEcomBannerCookiesConfigAccordion from "./LauEcomBannerCookiesConfigAccordion.vue";
|
7
|
-
import { CookieItem } from "./types";
|
8
|
-
import { LauEcomInstance } from "../../enums";
|
9
|
-
|
10
|
-
interface Props {
|
11
|
-
cookiesItems?: CookieItem[];
|
12
|
-
instance?: LauEcomInstance;
|
13
|
-
}
|
14
|
-
|
15
|
-
const props = withDefaults(defineProps<Props>(), {
|
16
|
-
cookiesItems: () => {
|
17
|
-
return [
|
18
|
-
{
|
19
|
-
title: "Esenciales",
|
20
|
-
text: "Este sitio web utiliza cookies gracias a esto podemos personalizar los ingresos a la web en futuras visitas y brindarte una mejor experiencia.",
|
21
|
-
isChecked: false,
|
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
|
-
const
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
};
|
60
|
-
|
61
|
-
const
|
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
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
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
|
-
.lau-ecom-banner-cookies-config
|
143
|
-
@apply dsEcom-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
dsEcom-
|
149
|
-
dsEcom-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
dsEcom-
|
155
|
-
dsEcom-
|
156
|
-
dsEcom-
|
157
|
-
|
158
|
-
|
159
|
-
|
1
|
+
<script lang="ts" setup>
|
2
|
+
import { computed, reactive } from "vue";
|
3
|
+
import LauEcomButton from "../LauEcomButton/LauEcomButton.vue";
|
4
|
+
import { LauEcomButtonType } from "../LauEcomButton/types";
|
5
|
+
import { LauEcomCoreIconNavClose } from "../LauEcomIcon";
|
6
|
+
import LauEcomBannerCookiesConfigAccordion from "./LauEcomBannerCookiesConfigAccordion.vue";
|
7
|
+
import { CookieItem } from "./types";
|
8
|
+
import { LauEcomInstance } from "../../enums";
|
9
|
+
|
10
|
+
interface Props {
|
11
|
+
cookiesItems?: CookieItem[];
|
12
|
+
instance?: LauEcomInstance;
|
13
|
+
}
|
14
|
+
|
15
|
+
const props = withDefaults(defineProps<Props>(), {
|
16
|
+
cookiesItems: () => {
|
17
|
+
return [
|
18
|
+
{
|
19
|
+
title: "Esenciales",
|
20
|
+
text: "Este sitio web utiliza cookies gracias a esto podemos personalizar los ingresos a la web en futuras visitas y brindarte una mejor experiencia.",
|
21
|
+
isChecked: false,
|
22
|
+
isDisabled: false,
|
23
|
+
},
|
24
|
+
{
|
25
|
+
title: "Preferencias",
|
26
|
+
text: "Este sitio web utiliza cookies gracias a esto podemos personalizar los ingresos a la web en futuras visitas y brindarte una mejor experiencia.",
|
27
|
+
isChecked: false,
|
28
|
+
isDisabled: false,
|
29
|
+
},
|
30
|
+
{
|
31
|
+
title: "Estadisticas",
|
32
|
+
text: "Este sitio web utiliza cookies gracias a esto podemos personalizar los ingresos a la web en futuras visitas y brindarte una mejor experiencia.",
|
33
|
+
isChecked: true,
|
34
|
+
isDisabled: false,
|
35
|
+
},
|
36
|
+
{
|
37
|
+
title: "Marketing",
|
38
|
+
text: "Este sitio web utiliza cookies gracias a esto podemos personalizar los ingresos a la web en futuras visitas y brindarte una mejor experiencia.",
|
39
|
+
isChecked: true,
|
40
|
+
isDisabled: false,
|
41
|
+
},
|
42
|
+
];
|
43
|
+
},
|
44
|
+
instance: LauEcomInstance.Upc,
|
45
|
+
});
|
46
|
+
|
47
|
+
const items = reactive(props.cookiesItems);
|
48
|
+
|
49
|
+
const emit = defineEmits(["onClose", "onReject", "onRejectAll", "onAccept"]);
|
50
|
+
|
51
|
+
const bannerCookiesConfigClasses = computed(() => {
|
52
|
+
return {
|
53
|
+
"lau-ecom-banner-cookies-config": true,
|
54
|
+
"lau-ecom-banner-cookies-config--upc":
|
55
|
+
props.instance === LauEcomInstance.Upc,
|
56
|
+
"lau-ecom-banner-cookies-config--cib":
|
57
|
+
props.instance === LauEcomInstance.Cibertec,
|
58
|
+
};
|
59
|
+
});
|
60
|
+
|
61
|
+
const configCookiesTitleClasses = computed(() => {
|
62
|
+
return {
|
63
|
+
"upc-font-subtitle-03-20px": props.instance === LauEcomInstance.Upc,
|
64
|
+
"cbt-font-subtitle-03-20px": props.instance === LauEcomInstance.Cibertec,
|
65
|
+
};
|
66
|
+
});
|
67
|
+
|
68
|
+
const configHeadClasses = computed(() => {
|
69
|
+
return {
|
70
|
+
"lau-ecom-config-head": true,
|
71
|
+
"lau-ecom-config-head--upc": props.instance === LauEcomInstance.Upc,
|
72
|
+
"lau-ecom-config-head--cbt": props.instance === LauEcomInstance.Cibertec,
|
73
|
+
};
|
74
|
+
});
|
75
|
+
|
76
|
+
const handleCloseConfig = () => {
|
77
|
+
emit("onClose");
|
78
|
+
};
|
79
|
+
|
80
|
+
const handleReject = () => {
|
81
|
+
emit("onReject");
|
82
|
+
};
|
83
|
+
|
84
|
+
const handleRejectAll = () => {
|
85
|
+
emit("onRejectAll");
|
86
|
+
};
|
87
|
+
|
88
|
+
const handleAccept = () => {
|
89
|
+
const itemsConfig = items.map((item) => item.isChecked);
|
90
|
+
console.log(itemsConfig);
|
91
|
+
emit("onAccept");
|
92
|
+
};
|
93
|
+
//
|
94
|
+
</script>
|
95
|
+
|
96
|
+
<template>
|
97
|
+
<div :class="bannerCookiesConfigClasses">
|
98
|
+
<div :class="configHeadClasses">
|
99
|
+
<p :class="configCookiesTitleClasses">Configuracion de cookies</p>
|
100
|
+
<button @click="handleCloseConfig">
|
101
|
+
<span><LauEcomCoreIconNavClose /></span>
|
102
|
+
</button>
|
103
|
+
</div>
|
104
|
+
<div>
|
105
|
+
<LauEcomBannerCookiesConfigAccordion
|
106
|
+
v-for="(item, index) in items"
|
107
|
+
:key="`cookie-config-${index + 1}`"
|
108
|
+
v-model="item.isChecked"
|
109
|
+
:cookie-item="item"
|
110
|
+
:instance="instance!"
|
111
|
+
/>
|
112
|
+
</div>
|
113
|
+
<div class="lau-ecom-banner-cookies-buttons">
|
114
|
+
<LauEcomButton
|
115
|
+
:instance="instance"
|
116
|
+
class="!dsEcom-w-full mobiles:dsEcom-order-last"
|
117
|
+
:type="LauEcomButtonType.Secondary"
|
118
|
+
@on-click="handleReject"
|
119
|
+
>
|
120
|
+
Rechazar
|
121
|
+
</LauEcomButton>
|
122
|
+
<LauEcomButton
|
123
|
+
:instance="instance"
|
124
|
+
class="!dsEcom-w-full"
|
125
|
+
:type="LauEcomButtonType.Secondary"
|
126
|
+
@on-click="handleRejectAll"
|
127
|
+
>
|
128
|
+
Aceptar seleccionadas
|
129
|
+
</LauEcomButton>
|
130
|
+
<LauEcomButton
|
131
|
+
:instance="instance"
|
132
|
+
class="!dsEcom-w-full mobiles:dsEcom-order-first"
|
133
|
+
@on-click="handleAccept"
|
134
|
+
>
|
135
|
+
Aceptar todas
|
136
|
+
</LauEcomButton>
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
</template>
|
140
|
+
|
141
|
+
<style scoped>
|
142
|
+
.lau-ecom-banner-cookies-config {
|
143
|
+
@apply dsEcom-flex
|
144
|
+
dsEcom-flex-col
|
145
|
+
dsEcom-gap-10
|
146
|
+
dsEcom-absolute
|
147
|
+
dsEcom-top-1/2
|
148
|
+
dsEcom-left-1/2
|
149
|
+
dsEcom-transform
|
150
|
+
-dsEcom-translate-x-1/2
|
151
|
+
-dsEcom-translate-y-1/2
|
152
|
+
dsEcom-pt-6
|
153
|
+
dsEcom-pb-8
|
154
|
+
dsEcom-px-6
|
155
|
+
dsEcom-w-[584px]
|
156
|
+
dsEcom-h-auto
|
157
|
+
dsEcom-shadow-upc-shadow-prominent
|
158
|
+
mobiles:dsEcom-gap-8
|
159
|
+
mobiles:dsEcom-w-[360px];
|
160
|
+
}
|
161
|
+
|
162
|
+
.lau-ecom-banner-cookies-config--upc {
|
163
|
+
@apply dsEcom-text-upc-color-neutral-100;
|
164
|
+
}
|
165
|
+
|
166
|
+
.lau-ecom-banner-cookies-config--cib {
|
167
|
+
@apply dsEcom-text-color-cbt-color-neutral-100;
|
168
|
+
}
|
169
|
+
|
170
|
+
.lau-ecom-config-head {
|
171
|
+
@apply dsEcom-flex
|
172
|
+
dsEcom-justify-between
|
173
|
+
dsEcom-items-center;
|
174
|
+
}
|
175
|
+
|
176
|
+
.lau-ecom-config-head--upc {
|
177
|
+
@apply dsEcom-text-upc-epg-color-purple-60-base;
|
178
|
+
}
|
179
|
+
|
180
|
+
.lau-ecom-config-head--cbt {
|
181
|
+
@apply dsEcom-text-cbt-astro-blue-80;
|
182
|
+
}
|
183
|
+
|
184
|
+
.lau-ecom-banner-cookies-buttons {
|
185
|
+
@apply dsEcom-flex
|
186
|
+
dsEcom-justify-between
|
187
|
+
dsEcom-items-center
|
188
|
+
dsEcom-gap-4
|
189
|
+
mobiles:dsEcom-flex-col;
|
190
|
+
}
|
191
|
+
</style>
|