@latte-macchiat-io/latte-vanilla-components 0.0.304 → 0.0.306

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.304",
3
+ "version": "0.0.306",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -14,7 +14,7 @@ export const columnsBase = style({
14
14
  gap: themeContract.columns.gap,
15
15
  }),
16
16
 
17
- [queries.sm]: {
17
+ [queries.md]: {
18
18
  gridAutoFlow: 'row',
19
19
  gridTemplateColumns: 'var(--columns)', // desktop : prend la variable CSS
20
20
  },
@@ -1,4 +1,4 @@
1
- import { globalStyle, style } from '@vanilla-extract/css';
1
+ import { style } from '@vanilla-extract/css';
2
2
  import { recipe } from '@vanilla-extract/recipes';
3
3
 
4
4
  import { themeContract } from '../../theme/contract.css';
@@ -23,12 +23,3 @@ export const navLegalRecipe = recipe(
23
23
  );
24
24
 
25
25
  export const navLegalLink = style({}, 'nav-social-link');
26
-
27
- globalStyle(`${navLegalLink} svg path`, {
28
- transition: themeContract.navLegal.transition,
29
- fill: themeContract.navLegal.colors.default,
30
- });
31
-
32
- globalStyle(`${navLegalLink}:hover svg path`, {
33
- fill: themeContract.navLegal.colors.defaultHover,
34
- });
@@ -1,6 +1,5 @@
1
1
  const themeNavLegalBase = {
2
2
  navLegal: {
3
- transition: 'all 0.5s ease-in-out',
4
3
  gap: {
5
4
  mobile: '5px',
6
5
  sm: '5px',
@@ -15,19 +14,11 @@ const themeNavLegalBase = {
15
14
  export const themeNavLegalLight = {
16
15
  navLegal: {
17
16
  ...themeNavLegalBase.navLegal,
18
- colors: {
19
- default: '#FF7377',
20
- defaultHover: '#000000',
21
- },
22
17
  },
23
18
  };
24
19
 
25
20
  export const themeNavLegalDark = {
26
21
  navLegal: {
27
22
  ...themeNavLegalBase.navLegal,
28
- colors: {
29
- default: '#FF7377',
30
- defaultHover: '#000000',
31
- },
32
23
  },
33
24
  };
@@ -650,11 +650,6 @@ export const themeContract = createGlobalThemeContract({
650
650
  },
651
651
 
652
652
  navLegal: {
653
- transition: 'latte-navLegal-transition',
654
- colors: {
655
- default: 'latte-navLegal-colors-default',
656
- defaultHover: 'latte-navLegal-colors-defaultHover',
657
- },
658
653
  gap: {
659
654
  mobile: 'latte-navLegal-gap-mobile',
660
655
  sm: 'latte-navLegal-gap-sm',