@gearbox-protocol/permissionless-ui 1.2.11 → 1.2.13

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.
@@ -23,7 +23,6 @@ __export(page_layout_exports, {
23
23
  module.exports = __toCommonJS(page_layout_exports);
24
24
  var import_jsx_runtime = require("react/jsx-runtime");
25
25
  var import_back_button = require('../buttons/back-button.js');
26
- var import_card = require('../card.js');
27
26
  function PageLayout({
28
27
  children,
29
28
  title,
@@ -51,7 +50,7 @@ function PageLayout({
51
50
  description
52
51
  ] })
53
52
  ] }),
54
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_card.Card, { className: "bg-black border-0 overflow-y-auto", children })
53
+ children
55
54
  ] });
56
55
  }
57
56
  // Annotate the CommonJS export names for ESM import in node:
@@ -1,6 +1,5 @@
1
1
  import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { BackButton } from "../buttons/back-button.js";
3
- import { Card } from "../card.js";
4
3
  function PageLayout({
5
4
  children,
6
5
  title,
@@ -28,7 +27,7 @@ function PageLayout({
28
27
  description
29
28
  ] })
30
29
  ] }),
31
- /* @__PURE__ */ jsx(Card, { className: "bg-black border-0 overflow-y-auto", children })
30
+ children
32
31
  ] });
33
32
  }
34
33
  export {
package/dist/globals.css CHANGED
@@ -78,6 +78,9 @@
78
78
  body {
79
79
  @apply bg-background text-foreground;
80
80
  }
81
+ .font-mono {
82
+ line-height: 1;
83
+ }
81
84
  }
82
85
 
83
86
  /* Add these styles to fix white background under scroll */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/permissionless-ui",
3
- "version": "1.2.11",
3
+ "version": "1.2.13",
4
4
  "description": "Internal UI components",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/index.js",