@latte-macchiat-io/latte-vanilla-components 0.0.319 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latte-macchiat-io/latte-vanilla-components",
3
- "version": "0.0.319",
3
+ "version": "0.0.321",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -120,23 +120,25 @@ export const carouselNav = recipe(
120
120
 
121
121
  navPositionVertical: {
122
122
  top: {
123
- [queries.mobile]: {
124
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.mobile}px)`,
125
- },
126
- [queries.sm]: {
127
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.sm}px)`,
128
- },
129
- [queries.md]: {
130
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.md}px)`,
131
- },
132
- [queries.lg]: {
133
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.lg}px)`,
134
- },
135
- [queries.xl]: {
136
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.xl}px)`,
137
- },
138
- [queries['2xl']]: {
139
- top: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset['2xl']}px)`,
123
+ '@media': {
124
+ [queries.mobile]: {
125
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.mobile})`,
126
+ },
127
+ [queries.sm]: {
128
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.sm})`,
129
+ },
130
+ [queries.md]: {
131
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.md})`,
132
+ },
133
+ [queries.lg]: {
134
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.lg})`,
135
+ },
136
+ [queries.xl]: {
137
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset.xl})`,
138
+ },
139
+ [queries['2xl']]: {
140
+ bottom: `calc(100% + ${themeContract.carousel.nav.positionVerticalOffset['2xl']})`,
141
+ },
140
142
  },
141
143
  },
142
144
  center: {