@neoptocom/neopto-ui 0.12.1 → 0.12.2

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/dist/index.cjs CHANGED
@@ -224,7 +224,7 @@ function Card({
224
224
  ]
225
225
  }
226
226
  ),
227
- /* @__PURE__ */ jsxRuntime.jsx("div", { style: { position: "relative", zIndex: 1 }, children })
227
+ /* @__PURE__ */ jsxRuntime.jsx("div", { style: { position: "relative", zIndex: 1, height: "100%" }, children })
228
228
  ]
229
229
  }
230
230
  );
package/dist/index.js CHANGED
@@ -203,7 +203,7 @@ function Card({
203
203
  ]
204
204
  }
205
205
  ),
206
- /* @__PURE__ */ jsx("div", { style: { position: "relative", zIndex: 1 }, children })
206
+ /* @__PURE__ */ jsx("div", { style: { position: "relative", zIndex: 1, height: "100%" }, children })
207
207
  ]
208
208
  }
209
209
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neoptocom/neopto-ui",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "private": false,
5
5
  "description": "A modern React component library built with Tailwind CSS v4 and TypeScript. Features dark mode, design tokens, and comprehensive Storybook documentation. Requires Tailwind v4+.",
6
6
  "keywords": [
@@ -89,7 +89,7 @@ export function Card({
89
89
  </defs>
90
90
  </svg>
91
91
  )}
92
- <div style={{ position: "relative", zIndex: 1 }}>
92
+ <div style={{ position: "relative", zIndex: 1, height: "100%" }}>
93
93
  {children}
94
94
  </div>
95
95
  </div>