@latte-macchiat-io/latte-vanilla-components 0.0.446 → 0.0.447

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.446",
3
+ "version": "0.0.447",
4
4
  "description": "Beautiful components for amazing projects, with a touch of Vanilla 🥤",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -2,7 +2,6 @@ import { style } from '@vanilla-extract/css';
2
2
  import { recipe, RecipeVariants } from '@vanilla-extract/recipes';
3
3
  import { queries, themeContract } from '@latte-macchiat-io/latte-vanilla-components';
4
4
 
5
- import { breakpointMapper } from '../../utils/breakpointMapper';
6
5
  import { generateResponsiveMedia } from '../../utils/generateResponsiveMedia';
7
6
 
8
7
  export const boxBase = style({
@@ -31,9 +30,9 @@ export const boxBase = style({
31
30
  export const boxAdjacent = style({
32
31
  selectors: {
33
32
  [`${boxBase} + &`]: {
34
- '@media': generateResponsiveMedia({
35
- marginTop: breakpointMapper([20, 20, 30, 30, 40, 40]),
36
- }),
33
+ // '@media': generateResponsiveMedia({
34
+ // marginTop: breakpointMapper([20, 20, 30, 30, 40, 40]),
35
+ // }),
37
36
  },
38
37
  },
39
38
  });
@@ -90,14 +89,14 @@ export const box = recipe({
90
89
  paddingTop: {
91
90
  small: {},
92
91
  medium: {
93
- '@media': generateResponsiveMedia({
94
- paddingTop: breakpointMapper([100, 100, 115, 115, 130, 130]),
95
- }),
92
+ // '@media': generateResponsiveMedia({
93
+ // paddingTop: breakpointMapper([100, 100, 115, 115, 130, 130]),
94
+ // }),
96
95
  },
97
96
  large: {
98
- '@media': generateResponsiveMedia({
99
- paddingTop: breakpointMapper([90, 90, 120, 120, 180, 240]),
100
- }),
97
+ // '@media': generateResponsiveMedia({
98
+ // paddingTop: breakpointMapper([90, 90, 120, 120, 180, 240]),
99
+ // }),
101
100
  },
102
101
  },
103
102
  },