@latte-macchiat-io/latte-vanilla-components 0.0.330 → 0.0.332

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.330",
3
+ "version": "0.0.332",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -59,6 +59,7 @@ export const carouselRecipe = recipe(
59
59
  export const carouselContent = style(
60
60
  {
61
61
  width: '100%',
62
+ overflow: 'hidden',
62
63
  position: 'relative',
63
64
  },
64
65
  'carousel-content'
@@ -191,6 +192,7 @@ export const carouselNavButton = style(
191
192
  );
192
193
 
193
194
  globalStyle(`${carouselNavButton} svg path`, {
195
+ transition: 'all 0.3s ease-in-out',
194
196
  fill: themeContract.carousel.nav.color,
195
197
  });
196
198