@total_onion/onion-library 2.0.234 → 2.0.236
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/block-carousel-multi-layout-v3/carousel-multi-layout-v3.scss +117 -116
- package/components/component-core-head-v3/core-head-v3.twig +8 -8
- package/components/webc-post-grid-display-module/post-grid-display-module.css +7 -2
- package/package.json +1 -1
- package/public/assetList.mjs +2 -78
- package/public/block-group-container-v3/group-container-v3.css +26 -26
- package/public/block-post-info-v3/post-info-v3.css +429 -429
- package/public/block-product-info-v3/product-info-v3.css +257 -257
- package/public/block-single-responsive-image-v3/single-responsive-image-v3.css +3 -2
- package/public/block-sub-group-container-v3/sub-group-container-v3.css +23 -23
- package/public/publicBundleBase.css +4059 -7960
|
@@ -3,153 +3,154 @@
|
|
|
3
3
|
@use '../component-element-positioning-v3/element-positioning-v3';
|
|
4
4
|
@use '../../breakpoints';
|
|
5
5
|
// @use 'NodeModules/swiper/swiper-bundle.min.css';
|
|
6
|
-
|
|
7
|
-
.carousel-multi-layout-v3 {
|
|
8
|
-
display: grid;
|
|
9
|
-
grid-template: 'main' / 1fr;
|
|
10
|
-
overflow-x: var(--block-overflow, hidden);
|
|
11
|
-
width: 100%;
|
|
12
|
-
position: relative;
|
|
13
|
-
background-color: var(--carousel-bg-colour);
|
|
14
|
-
|
|
15
|
-
&__inner-container {
|
|
16
|
-
width: 100%;
|
|
17
|
-
height: 100%;
|
|
18
|
-
position: relative;
|
|
6
|
+
@layer base-styles {
|
|
7
|
+
.carousel-multi-layout-v3 {
|
|
19
8
|
display: grid;
|
|
20
|
-
grid-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
&__swiper-carousel-container {
|
|
9
|
+
grid-template: 'main' / 1fr;
|
|
10
|
+
overflow-x: var(--block-overflow, hidden);
|
|
24
11
|
width: 100%;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
inset: 0;
|
|
28
|
-
.swiper-wrapper {
|
|
29
|
-
height: 100%;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.swiper-button-disabled {
|
|
34
|
-
pointer-events: none;
|
|
35
|
-
opacity: 0;
|
|
36
|
-
}
|
|
12
|
+
position: relative;
|
|
13
|
+
background-color: var(--carousel-bg-colour);
|
|
37
14
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
15
|
+
&__inner-container {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
position: relative;
|
|
19
|
+
display: grid;
|
|
20
|
+
grid-area: main;
|
|
21
|
+
grid-template: 'main'/1fr;
|
|
45
22
|
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
23
|
+
&__swiper-carousel-container {
|
|
24
|
+
width: 100%;
|
|
25
|
+
height: 100%;
|
|
26
|
+
grid-area: main;
|
|
27
|
+
inset: 0;
|
|
28
|
+
.swiper-wrapper {
|
|
29
|
+
height: 100%;
|
|
30
|
+
}
|
|
51
31
|
}
|
|
52
|
-
|
|
53
|
-
|
|
32
|
+
|
|
33
|
+
.swiper-button-disabled {
|
|
34
|
+
pointer-events: none;
|
|
35
|
+
opacity: 0;
|
|
54
36
|
}
|
|
55
|
-
}
|
|
56
37
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
38
|
+
.swiper-button-prev {
|
|
39
|
+
left: var(--left-arrow-horizontally-mobile);
|
|
40
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
41
|
+
left: var(--left-arrow-horizontally-portrait);
|
|
42
|
+
}
|
|
43
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
44
|
+
left: var(--left-arrow-horizontally-desktop);
|
|
45
|
+
}
|
|
62
46
|
}
|
|
63
|
-
|
|
64
|
-
|
|
47
|
+
.swiper-button-next {
|
|
48
|
+
right: var(--right-arrow-horizontally-mobile);
|
|
49
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
50
|
+
right: var(--right-arrow-horizontally-portrait);
|
|
51
|
+
}
|
|
52
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
53
|
+
right: var(--right-arrow-horizontally-desktop);
|
|
54
|
+
}
|
|
65
55
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
)};
|
|
56
|
+
|
|
57
|
+
.swiper-button-next,
|
|
58
|
+
.swiper-button-prev {
|
|
59
|
+
top: var(--arrows-position-vertically-mobile);
|
|
71
60
|
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
72
|
-
--
|
|
73
|
-
var(--arrows-size-portrait),
|
|
74
|
-
'portrait'
|
|
75
|
-
)};
|
|
61
|
+
top: var(--arrows-position-vertically-portrait);
|
|
76
62
|
}
|
|
77
63
|
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
64
|
+
top: var(--arrows-position-vertically-desktop);
|
|
65
|
+
}
|
|
66
|
+
&::after {
|
|
78
67
|
--swiper-navigation-size: #{core-functions-v3.fluidSize(
|
|
79
|
-
var(--arrows-size-
|
|
80
|
-
'
|
|
68
|
+
var(--arrows-size-mobile),
|
|
69
|
+
'mobile'
|
|
81
70
|
)};
|
|
71
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
72
|
+
--swiper-navigation-size: #{core-functions-v3.fluidSize(
|
|
73
|
+
var(--arrows-size-portrait),
|
|
74
|
+
'portrait'
|
|
75
|
+
)};
|
|
76
|
+
}
|
|
77
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
78
|
+
--swiper-navigation-size: #{core-functions-v3.fluidSize(
|
|
79
|
+
var(--arrows-size-desktop),
|
|
80
|
+
'desktop'
|
|
81
|
+
)};
|
|
82
|
+
}
|
|
83
|
+
text-rendering: auto;
|
|
84
|
+
color: var(--swiper-arrow-colour);
|
|
82
85
|
}
|
|
83
|
-
text-rendering: auto;
|
|
84
|
-
color: var(--swiper-arrow-colour);
|
|
85
86
|
}
|
|
86
|
-
}
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
width: core-functions-v3.fluidSize(
|
|
91
|
-
var(--custom-arrows-size-mobile),
|
|
92
|
-
'mobile'
|
|
93
|
-
);
|
|
94
|
-
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
88
|
+
.custom_arrow {
|
|
89
|
+
height: auto;
|
|
95
90
|
width: core-functions-v3.fluidSize(
|
|
96
|
-
var(--custom-arrows-size-
|
|
97
|
-
'
|
|
91
|
+
var(--custom-arrows-size-mobile),
|
|
92
|
+
'mobile'
|
|
98
93
|
);
|
|
94
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
95
|
+
width: core-functions-v3.fluidSize(
|
|
96
|
+
var(--custom-arrows-size-portrait),
|
|
97
|
+
'portrait'
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
101
|
+
width: core-functions-v3.fluidSize(
|
|
102
|
+
var(--custom-arrows-size-desktop),
|
|
103
|
+
'desktop'
|
|
104
|
+
);
|
|
105
|
+
}
|
|
99
106
|
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
107
|
+
|
|
108
|
+
.swiper-pagination-bullets.swiper-pagination-horizontal {
|
|
109
|
+
bottom: unset;
|
|
110
|
+
left: unset;
|
|
111
|
+
width: unset;
|
|
112
|
+
}
|
|
113
|
+
.swiper-pagination {
|
|
114
|
+
@include element-positioning-v3.elementPositioning();
|
|
105
115
|
}
|
|
106
|
-
}
|
|
107
116
|
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
width: unset;
|
|
112
|
-
}
|
|
113
|
-
.swiper-pagination {
|
|
114
|
-
@include element-positioning-v3.elementPositioning();
|
|
115
|
-
}
|
|
117
|
+
.swiper-pagination-bullet {
|
|
118
|
+
background-color: transparent;
|
|
119
|
+
}
|
|
116
120
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
121
|
+
.swiper-pagination-bullet-active {
|
|
122
|
+
background-color: var(--swiper-pagination-colour);
|
|
123
|
+
}
|
|
120
124
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
125
|
+
.swiper-pagination-fraction {
|
|
126
|
+
color: var(--swiper-pagination-colour);
|
|
127
|
+
}
|
|
124
128
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
129
|
+
.swiper-slide {
|
|
130
|
+
opacity: var(--next-and-prev-slide-opacity-mobile);
|
|
128
131
|
|
|
129
|
-
|
|
130
|
-
|
|
132
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
133
|
+
opacity: var(--next-and-prev-slide-opacity-portrait);
|
|
134
|
+
}
|
|
131
135
|
|
|
132
|
-
|
|
133
|
-
|
|
136
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
137
|
+
opacity: var(--next-and-prev-slide-opacity-desktop);
|
|
138
|
+
}
|
|
134
139
|
}
|
|
135
140
|
|
|
136
|
-
|
|
137
|
-
opacity:
|
|
141
|
+
.swiper-slide-active {
|
|
142
|
+
opacity: unset;
|
|
138
143
|
}
|
|
139
|
-
}
|
|
140
144
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}
|
|
151
|
-
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
152
|
-
display: var(--display-arrows-desktop);
|
|
145
|
+
.swiper-button-next,
|
|
146
|
+
.swiper-button-prev {
|
|
147
|
+
display: var(--display-arrows-mobile);
|
|
148
|
+
@include core-mixins-v3.device(breakpoints.$tabPortrait) {
|
|
149
|
+
display: var(--display-arrows-portrait);
|
|
150
|
+
}
|
|
151
|
+
@include core-mixins-v3.device(breakpoints.$tabLandscape) {
|
|
152
|
+
display: var(--display-arrows-desktop);
|
|
153
|
+
}
|
|
153
154
|
}
|
|
154
155
|
}
|
|
155
156
|
}
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
|
|
43
43
|
<script type="speculationrules">
|
|
44
44
|
{
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
45
|
+
"prefetch": [
|
|
46
|
+
{
|
|
47
|
+
"where": { "href_matches": ["/"] },
|
|
48
|
+
"eagerness": "eager"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
52
|
</script>
|
|
53
53
|
{# speculation api end #}
|
|
54
54
|
|
|
55
55
|
{# core design settings #}
|
|
56
56
|
{{function('core_design_settings_v3', options).0}}
|
|
57
|
-
{{function('
|
|
57
|
+
{{function('core_post_overrides_v3', options).0}}
|
|
58
58
|
{{function('core_font_modifiers_v3', options).0}}
|
|
59
59
|
{{function('core_critical_css_v3').0}}
|
|
60
60
|
{{function('core_typography_v3', options).0}}
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
post-grid-display-module {
|
|
2
2
|
grid-area: display;
|
|
3
3
|
display: grid;
|
|
4
|
-
|
|
5
4
|
.post-grid-display-module__grid-container {
|
|
6
5
|
place-self: stretch;
|
|
7
6
|
display: grid;
|
|
8
7
|
padding: 10px;
|
|
9
8
|
gap: 30px;
|
|
10
|
-
grid-template-columns:
|
|
9
|
+
grid-template-columns: 1fr;
|
|
10
|
+
@media screen and (min-width: 768px) {
|
|
11
|
+
grid-template-columns: repeat(3, 1fr);
|
|
12
|
+
}
|
|
13
|
+
@media screen and (min-width: 1440px) {
|
|
14
|
+
grid-template-columns: repeat(4, 1fr);
|
|
15
|
+
}
|
|
11
16
|
}
|
|
12
17
|
.post-grid-display-module__post-container {
|
|
13
18
|
display: grid;
|
package/package.json
CHANGED
package/public/assetList.mjs
CHANGED
|
@@ -1,79 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
"./components/block-sub-group-container-v3/sub-group-container-v3.scss",
|
|
4
|
-
"./components/block-sticky-buy-cta-v3/sticky-buy-cta-v3.scss",
|
|
5
|
-
"./components/block-standard-content-v3/standard-content-v3.scss",
|
|
6
|
-
"./components/block-spotify-embed-v3/spotify-embed-v3.scss",
|
|
7
|
-
"./components/block-spacer-v3/spacer-v3.scss",
|
|
8
|
-
"./components/block-social-networks-v3/social-networks-v3.scss",
|
|
9
|
-
"./components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.scss",
|
|
10
|
-
"./components/block-site-title-and-tagline-v3/site-title-and-tagline-v3.scss",
|
|
11
|
-
"./components/block-site-logo-container-v3/site-logo-container-v3.scss",
|
|
12
|
-
"./components/block-site-copyright-notice-v3/site-copyright-notice-v3.scss",
|
|
13
|
-
"./components/block-single-responsive-image-v3/single-responsive-image-v3.scss",
|
|
14
|
-
"./components/block-single-column-container-v3/single-column-container-v3.scss",
|
|
15
|
-
"./components/block-section-separator-v3/section-separator-v3.scss",
|
|
16
|
-
"./components/block-scrolling-banner-v3/scrolling-banner-v3.scss",
|
|
17
|
-
"./components/block-responsive-table-v3/responsive-table-v3.scss",
|
|
18
|
-
"./components/block-raw-html-v3/raw-html-v3.scss",
|
|
19
|
-
"./components/block-product-info-v3/product-info-v3.scss",
|
|
20
|
-
"./components/block-post-type-filter-grid-v3/post-type-filter-grid-v3.scss",
|
|
21
|
-
"./components/block-post-info-v3/post-info-v3.scss",
|
|
22
|
-
"./components/block-nav-menu-container-v3/nav-menu-container-v3.scss",
|
|
23
|
-
"./components/block-modal-form-v3/modal-form-v3.scss",
|
|
24
|
-
"./components/block-market-selector-v3/market-selector-v3.scss",
|
|
25
|
-
"./components/block-lottie-content-v3/lottie-content-v3.scss",
|
|
26
|
-
"./components/block-group-container-v3/group-container-v3.scss",
|
|
27
|
-
"./components/block-gradient-layer-v3/gradient-layer-v3.scss",
|
|
28
|
-
"./components/block-form-selection-v3/form-selection-v3.scss",
|
|
29
|
-
"./components/block-featured-image-gallery-v3/featured-image-gallery-v3.scss",
|
|
30
|
-
"./components/block-divider-v3/divider-v3.scss",
|
|
31
|
-
"./components/block-cover-link-v3/cover-link-v3.scss",
|
|
32
|
-
"./components/block-cocktail-recipe-v3/cocktail-recipe-v3.scss",
|
|
33
|
-
"./components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.scss",
|
|
34
|
-
"./components/block-block-interactions-v3/block-interactions-v3.scss",
|
|
35
|
-
"./components/block-betterreviews-display-v3/betterreviews-display-v3.scss",
|
|
36
|
-
"./components/block-back-to-top-button-v3/back-to-top-button-v3.scss",
|
|
37
|
-
"./components/block-accordion-v3/accordion-v3.scss",
|
|
38
|
-
"./components/block-accent-image-v3/accent-image-v3.scss",
|
|
39
|
-
"./components/block-post-type-filter-grid-v4/post-type-filter-grid-v4.css",
|
|
40
|
-
"./components/block-video-content-v3/video-content-v3.js",
|
|
41
|
-
"./components/block-sub-group-container-v3/sub-group-container-v3.js",
|
|
42
|
-
"./components/block-sticky-buy-cta-v3/sticky-buy-cta-v3.js",
|
|
43
|
-
"./components/block-standard-content-v3/standard-content-v3.js",
|
|
44
|
-
"./components/block-spotify-embed-v3/spotify-embed-v3.js",
|
|
45
|
-
"./components/block-spacer-v3/spacer-v3.js",
|
|
46
|
-
"./components/block-social-networks-v3/social-networks-v3.js",
|
|
47
|
-
"./components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.js",
|
|
48
|
-
"./components/block-site-title-and-tagline-v3/site-title-and-tagline-v3.js",
|
|
49
|
-
"./components/block-site-logo-container-v3/site-logo-container-v3.js",
|
|
50
|
-
"./components/block-site-copyright-notice-v3/site-copyright-notice-v3.js",
|
|
51
|
-
"./components/block-single-responsive-image-v3/single-responsive-image-v3.js",
|
|
52
|
-
"./components/block-single-column-container-v3/single-column-container-v3.js",
|
|
53
|
-
"./components/block-section-separator-v3/section-separator-v3.js",
|
|
54
|
-
"./components/block-scrolling-banner-v3/scrolling-banner-v3.js",
|
|
55
|
-
"./components/block-responsive-table-v3/responsive-table-v3.js",
|
|
56
|
-
"./components/block-raw-html-v3/raw-html-v3.js",
|
|
57
|
-
"./components/block-product-info-v3/product-info-v3.js",
|
|
58
|
-
"./components/block-post-type-filter-grid-v3/post-type-filter-grid-v3.js",
|
|
59
|
-
"./components/block-post-info-v3/post-info-v3.js",
|
|
60
|
-
"./components/block-nav-menu-container-v3/nav-menu-container-v3.js",
|
|
61
|
-
"./components/block-modal-form-v3/modal-form-v3.js",
|
|
62
|
-
"./components/block-market-selector-v3/market-selector-v3.js",
|
|
63
|
-
"./components/block-lottie-content-v3/lottie-content-v3.js",
|
|
64
|
-
"./components/block-group-container-v3/group-container-v3.js",
|
|
65
|
-
"./components/block-gradient-layer-v3/gradient-layer-v3.js",
|
|
66
|
-
"./components/block-form-selection-v3/form-selection-v3.js",
|
|
67
|
-
"./components/block-featured-image-gallery-v3/featured-image-gallery-v3.js",
|
|
68
|
-
"./components/block-divider-v3/divider-v3.js",
|
|
69
|
-
"./components/block-cover-link-v3/cover-link-v3.js",
|
|
70
|
-
"./components/block-cocktail-recipe-v3/cocktail-recipe-v3.js",
|
|
71
|
-
"./components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.js",
|
|
72
|
-
"./components/block-block-interactions-v3/block-interactions-v3.js",
|
|
73
|
-
"./components/block-betterreviews-display-v3/betterreviews-display-v3.js",
|
|
74
|
-
"./components/block-back-to-top-button-v3/back-to-top-button-v3.js",
|
|
75
|
-
"./components/block-accordion-v3/accordion-v3.js",
|
|
76
|
-
"./components/block-accent-image-v3/accent-image-v3.js",
|
|
77
|
-
"./components/block-post-type-filter-grid-v4/post-type-filter-grid-v4.js",
|
|
78
|
-
];
|
|
1
|
+
|
|
2
|
+
const dynamicAssets = ["./components/block-video-content-v3/video-content-v3.scss","./components/block-sub-group-container-v3/sub-group-container-v3.scss","./components/block-sticky-buy-cta-v3/sticky-buy-cta-v3.scss","./components/block-standard-content-v3/standard-content-v3.scss","./components/block-spotify-embed-v3/spotify-embed-v3.scss","./components/block-spacer-v3/spacer-v3.scss","./components/block-social-networks-v3/social-networks-v3.scss","./components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.scss","./components/block-site-title-and-tagline-v3/site-title-and-tagline-v3.scss","./components/block-site-logo-container-v3/site-logo-container-v3.scss","./components/block-site-copyright-notice-v3/site-copyright-notice-v3.scss","./components/block-single-responsive-image-v3/single-responsive-image-v3.scss","./components/block-single-column-container-v3/single-column-container-v3.scss","./components/block-section-separator-v3/section-separator-v3.scss","./components/block-scrolling-banner-v3/scrolling-banner-v3.scss","./components/block-responsive-table-v3/responsive-table-v3.scss","./components/block-raw-html-v3/raw-html-v3.scss","./components/block-product-info-v3/product-info-v3.scss","./components/block-post-type-filter-grid-v3/post-type-filter-grid-v3.scss","./components/block-post-info-v3/post-info-v3.scss","./components/block-nav-menu-container-v3/nav-menu-container-v3.scss","./components/block-modal-form-v3/modal-form-v3.scss","./components/block-market-selector-v3/market-selector-v3.scss","./components/block-lottie-content-v3/lottie-content-v3.scss","./components/block-group-container-v3/group-container-v3.scss","./components/block-gradient-layer-v3/gradient-layer-v3.scss","./components/block-form-selection-v3/form-selection-v3.scss","./components/block-featured-image-gallery-v3/featured-image-gallery-v3.scss","./components/block-divider-v3/divider-v3.scss","./components/block-cover-link-v3/cover-link-v3.scss","./components/block-cocktail-recipe-v3/cocktail-recipe-v3.scss","./components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.scss","./components/block-block-interactions-v3/block-interactions-v3.scss","./components/block-betterreviews-display-v3/betterreviews-display-v3.scss","./components/block-back-to-top-button-v3/back-to-top-button-v3.scss","./components/block-accordion-v3/accordion-v3.scss","./components/block-accent-image-v3/accent-image-v3.scss","./components/block-video-content-v3/video-content-v3.js","./components/block-sub-group-container-v3/sub-group-container-v3.js","./components/block-sticky-buy-cta-v3/sticky-buy-cta-v3.js","./components/block-standard-content-v3/standard-content-v3.js","./components/block-spotify-embed-v3/spotify-embed-v3.js","./components/block-spacer-v3/spacer-v3.js","./components/block-social-networks-v3/social-networks-v3.js","./components/block-smash-balloon-social-media-v3/smash-balloon-social-media-v3.js","./components/block-site-title-and-tagline-v3/site-title-and-tagline-v3.js","./components/block-site-logo-container-v3/site-logo-container-v3.js","./components/block-site-copyright-notice-v3/site-copyright-notice-v3.js","./components/block-single-responsive-image-v3/single-responsive-image-v3.js","./components/block-single-column-container-v3/single-column-container-v3.js","./components/block-section-separator-v3/section-separator-v3.js","./components/block-scrolling-banner-v3/scrolling-banner-v3.js","./components/block-responsive-table-v3/responsive-table-v3.js","./components/block-raw-html-v3/raw-html-v3.js","./components/block-product-info-v3/product-info-v3.js","./components/block-post-type-filter-grid-v3/post-type-filter-grid-v3.js","./components/block-post-info-v3/post-info-v3.js","./components/block-nav-menu-container-v3/nav-menu-container-v3.js","./components/block-modal-form-v3/modal-form-v3.js","./components/block-market-selector-v3/market-selector-v3.js","./components/block-lottie-content-v3/lottie-content-v3.js","./components/block-group-container-v3/group-container-v3.js","./components/block-gradient-layer-v3/gradient-layer-v3.js","./components/block-form-selection-v3/form-selection-v3.js","./components/block-featured-image-gallery-v3/featured-image-gallery-v3.js","./components/block-divider-v3/divider-v3.js","./components/block-cover-link-v3/cover-link-v3.js","./components/block-cocktail-recipe-v3/cocktail-recipe-v3.js","./components/block-carousel-multi-layout-v3/carousel-multi-layout-v3.js","./components/block-block-interactions-v3/block-interactions-v3.js","./components/block-betterreviews-display-v3/betterreviews-display-v3.js","./components/block-back-to-top-button-v3/back-to-top-button-v3.js","./components/block-accordion-v3/accordion-v3.js","./components/block-accent-image-v3/accent-image-v3.js"];
|
|
79
3
|
export default dynamicAssets;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
|
-
.group-container-v3
|
|
2
|
+
.group-container-v3 {
|
|
3
3
|
display: grid;
|
|
4
4
|
grid-template: "main"/1fr;
|
|
5
5
|
align-items: center;
|
|
6
6
|
justify-items: center;
|
|
7
7
|
place-items: center;
|
|
8
8
|
}
|
|
9
|
-
.group-container-v3__grid-container
|
|
9
|
+
.group-container-v3__grid-container {
|
|
10
10
|
grid-area: main;
|
|
11
11
|
align-self: stretch;
|
|
12
12
|
justify-self: stretch;
|
|
13
13
|
place-self: stretch;
|
|
14
14
|
}
|
|
15
|
-
.group-container-v3__grid-container.flex-layout-container
|
|
15
|
+
.group-container-v3__grid-container.flex-layout-container {
|
|
16
16
|
display: flex;
|
|
17
17
|
display: var(--display-type, flex);
|
|
18
18
|
justify-content: flex-start;
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
flex-wrap: var(--flex-wrap-mobile, nowrap);
|
|
28
28
|
}
|
|
29
29
|
@media screen and (min-width: 768px) {
|
|
30
|
-
.group-container-v3__grid-container.flex-layout-container
|
|
30
|
+
.group-container-v3__grid-container.flex-layout-container {
|
|
31
31
|
justify-content: flex-start;
|
|
32
32
|
justify-content: var(--justify-content-portrait, flex-start);
|
|
33
33
|
flex-direction: row;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
@media screen and (min-width: 1024px) {
|
|
44
|
-
.group-container-v3__grid-container.flex-layout-container
|
|
44
|
+
.group-container-v3__grid-container.flex-layout-container {
|
|
45
45
|
justify-content: flex-start;
|
|
46
46
|
justify-content: var(--justify-content-desktop, flex-start);
|
|
47
47
|
flex-direction: row;
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
flex-wrap: var(--flex-wrap-desktop, nowrap);
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
57
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
58
58
|
display: "grid";
|
|
59
59
|
display: var(--display-type, "grid");
|
|
60
60
|
position: relative;
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
scroll-snap-type: none;
|
|
64
64
|
scroll-snap-type: var(--scroll-snap-type-mobile, none);
|
|
65
65
|
}
|
|
66
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
66
|
+
.group-container-v3__grid-container.grid-layout-container > div {
|
|
67
67
|
scroll-snap-align: start;
|
|
68
68
|
scroll-snap-align: var(--scroll-snap-align-mobile, start);
|
|
69
69
|
}
|
|
70
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
70
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
71
71
|
overflow: hidden;
|
|
72
72
|
overflow: var(--container-overflow-type-mobile, hidden);
|
|
73
73
|
grid-gap: calc(var(--global-inline-spacing) * 0) calc(var(--global-inline-spacing) * 0);
|
|
@@ -204,15 +204,15 @@
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
@media screen and (min-width: 768px) {
|
|
207
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
207
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
208
208
|
scroll-snap-type: none;
|
|
209
209
|
scroll-snap-type: var(--scroll-snap-type-portrait, none);
|
|
210
210
|
}
|
|
211
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
211
|
+
.group-container-v3__grid-container.grid-layout-container > div {
|
|
212
212
|
scroll-snap-align: start;
|
|
213
213
|
scroll-snap-align: var(--scroll-snap-align-portrait, start);
|
|
214
214
|
}
|
|
215
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
215
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
216
216
|
overflow: hidden;
|
|
217
217
|
overflow: var(--container-overflow-type-portrait, hidden);
|
|
218
218
|
grid-auto-flow: row;
|
|
@@ -230,15 +230,15 @@
|
|
|
230
230
|
}
|
|
231
231
|
}
|
|
232
232
|
@media screen and (min-width: 1024px) {
|
|
233
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
233
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
234
234
|
scroll-snap-type: none;
|
|
235
235
|
scroll-snap-type: var(--scroll-snap-type-desktop, none);
|
|
236
236
|
}
|
|
237
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
237
|
+
.group-container-v3__grid-container.grid-layout-container > div {
|
|
238
238
|
scroll-snap-align: start;
|
|
239
239
|
scroll-snap-align: var(--scroll-snap-align-desktop, start);
|
|
240
240
|
}
|
|
241
|
-
.group-container-v3__grid-container.grid-layout-container
|
|
241
|
+
.group-container-v3__grid-container.grid-layout-container {
|
|
242
242
|
overflow: hidden;
|
|
243
243
|
overflow: var(--container-overflow-type-desktop, hidden);
|
|
244
244
|
grid-gap: calc(var(--global-inline-spacing) * 0) calc(var(--global-inline-spacing) * 0);
|
|
@@ -255,11 +255,11 @@
|
|
|
255
255
|
grid-template-rows: var(--grid-template-rows-custom-desktop, repeat(var(--grid-template-rows-desktop), var(--grid-auto-rows-desktop, 1fr)));
|
|
256
256
|
}
|
|
257
257
|
}
|
|
258
|
-
.group-container-v3__block-container
|
|
258
|
+
.group-container-v3__block-container {
|
|
259
259
|
pointer-events: none;
|
|
260
260
|
position: relative;
|
|
261
261
|
}
|
|
262
|
-
.group-container-v3__block-container.grid-layout-container
|
|
262
|
+
.group-container-v3__block-container.grid-layout-container {
|
|
263
263
|
display: grid;
|
|
264
264
|
z-index: 5;
|
|
265
265
|
z-index: var(--element-z-index, 5);
|
|
@@ -269,49 +269,49 @@
|
|
|
269
269
|
justify-self: var(--grid-horizontal-placement-mobile);
|
|
270
270
|
place-self: var(--grid-vertical-placement-mobile) var(--grid-horizontal-placement-mobile);
|
|
271
271
|
}
|
|
272
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile)
|
|
272
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile) {
|
|
273
273
|
grid-template-rows: subgrid;
|
|
274
274
|
}
|
|
275
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile)
|
|
275
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-mobile) > section {
|
|
276
276
|
grid-row: 1/-1;
|
|
277
277
|
grid-column: 1/-1;
|
|
278
278
|
}
|
|
279
279
|
@media screen and (min-width: 768px) {
|
|
280
|
-
.group-container-v3__block-container.grid-layout-container
|
|
280
|
+
.group-container-v3__block-container.grid-layout-container {
|
|
281
281
|
grid-row: var(--grid-row-start-portrait)/span var(--grid-row-span-portrait);
|
|
282
282
|
grid-column: var(--grid-column-start-portrait)/span var(--grid-column-span-portrait);
|
|
283
283
|
align-self: var(--grid-vertical-placement-portrait);
|
|
284
284
|
justify-self: var(--grid-horizontal-placement-portrait);
|
|
285
285
|
place-self: var(--grid-vertical-placement-portrait) var(--grid-horizontal-placement-portrait);
|
|
286
286
|
}
|
|
287
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait)
|
|
287
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait) {
|
|
288
288
|
grid-template-rows: subgrid;
|
|
289
289
|
}
|
|
290
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait)
|
|
290
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-portrait) > section {
|
|
291
291
|
grid-row: 1/-1;
|
|
292
292
|
grid-column: 1/-1;
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
295
|
@media screen and (min-width: 1024px) {
|
|
296
|
-
.group-container-v3__block-container.grid-layout-container
|
|
296
|
+
.group-container-v3__block-container.grid-layout-container {
|
|
297
297
|
grid-row: var(--grid-row-start)/span var(--grid-row-span);
|
|
298
298
|
grid-column: var(--grid-column-start)/span var(--grid-column-span);
|
|
299
299
|
align-self: var(--grid-vertical-placement-desktop);
|
|
300
300
|
justify-self: var(--grid-horizontal-placement-desktop);
|
|
301
301
|
place-self: var(--grid-vertical-placement-desktop) var(--grid-horizontal-placement-desktop);
|
|
302
302
|
}
|
|
303
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop)
|
|
303
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop) {
|
|
304
304
|
grid-template-rows: subgrid;
|
|
305
305
|
}
|
|
306
|
-
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop)
|
|
306
|
+
.group-container-v3__block-container.grid-layout-container:has(> .subgrid-layout-desktop) > section {
|
|
307
307
|
grid-row: 1/-1;
|
|
308
308
|
grid-column: 1/-1;
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
|
-
.group-container-v3__block-container:has(.video-content-v3__video-container.video-playing.video-playing--high-z-index)
|
|
311
|
+
.group-container-v3__block-container:has(.video-content-v3__video-container.video-playing.video-playing--high-z-index) {
|
|
312
312
|
z-index: 50;
|
|
313
313
|
}
|
|
314
|
-
.group-container-v3__block-number
|
|
314
|
+
.group-container-v3__block-number {
|
|
315
315
|
z-index: 99;
|
|
316
316
|
position: absolute;
|
|
317
317
|
font-size: 40px;
|