@latte-macchiat-io/latte-vanilla-components 0.0.320 → 0.0.321
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/package.json
CHANGED
@@ -122,22 +122,22 @@ export const carouselNav = recipe(
|
|
122
122
|
top: {
|
123
123
|
'@media': {
|
124
124
|
[queries.mobile]: {
|
125
|
-
|
125
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.mobile})`,
|
126
126
|
},
|
127
127
|
[queries.sm]: {
|
128
|
-
|
128
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.sm})`,
|
129
129
|
},
|
130
130
|
[queries.md]: {
|
131
|
-
|
131
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.md})`,
|
132
132
|
},
|
133
133
|
[queries.lg]: {
|
134
|
-
|
134
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.lg})`,
|
135
135
|
},
|
136
136
|
[queries.xl]: {
|
137
|
-
|
137
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.xl})`,
|
138
138
|
},
|
139
139
|
[queries['2xl']]: {
|
140
|
-
|
140
|
+
bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset['2xl']})`,
|
141
141
|
},
|
142
142
|
},
|
143
143
|
},
|