@gearbox-protocol/permissionless-ui 1.2.8 → 1.2.10
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/cjs/components/layout/footer.js +1 -1
- package/dist/cjs/components/table.js +1 -1
- package/dist/cjs/components/token-icon.js +1 -0
- package/dist/esm/components/layout/footer.js +1 -1
- package/dist/esm/components/table.js +1 -1
- package/dist/esm/components/token-icon.js +1 -0
- package/package.json +1 -1
|
@@ -62,7 +62,7 @@ function Footer({
|
|
|
62
62
|
appName,
|
|
63
63
|
legalReferences
|
|
64
64
|
}) {
|
|
65
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("footer", { className: "border-t border-gray-800 bg-background px-4 py-
|
|
65
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("footer", { className: "border-t border-gray-800 bg-background px-4 py-2 mt-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
|
|
66
66
|
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex flex-col gap-8 h-full justify-between", children: [
|
|
67
67
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_app_logo.AppLogo, { appName, size: "small" }),
|
|
68
68
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_legal_disclaimer.LegalDisclaimer, { hrefs: legalReferences })
|
|
@@ -41,7 +41,7 @@ module.exports = __toCommonJS(table_exports);
|
|
|
41
41
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
42
42
|
var React = __toESM(require("react"));
|
|
43
43
|
var import_utils = __toESM(require('../utils/index.js'));
|
|
44
|
-
const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
44
|
+
const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: "rounded-xl border relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
45
45
|
"table",
|
|
46
46
|
{
|
|
47
47
|
ref,
|
|
@@ -29,7 +29,7 @@ function Footer({
|
|
|
29
29
|
appName,
|
|
30
30
|
legalReferences
|
|
31
31
|
}) {
|
|
32
|
-
return /* @__PURE__ */ jsx("footer", { className: "border-t border-gray-800 bg-background px-4 py-
|
|
32
|
+
return /* @__PURE__ */ jsx("footer", { className: "border-t border-gray-800 bg-background px-4 py-2 mt-auto", children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-8 items-top", children: [
|
|
33
33
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-8 h-full justify-between", children: [
|
|
34
34
|
/* @__PURE__ */ jsx(AppLogo, { appName, size: "small" }),
|
|
35
35
|
/* @__PURE__ */ jsx(LegalDisclaimer, { hrefs: legalReferences })
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import * as React from "react";
|
|
3
3
|
import cn from "../utils/index.js";
|
|
4
|
-
const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
|
|
4
|
+
const Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "rounded-xl border relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
|
|
5
5
|
"table",
|
|
6
6
|
{
|
|
7
7
|
ref,
|