@rash2x/bridge-widget 0.1.22 → 0.1.23

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.
@@ -1167,7 +1167,7 @@ const SearchInput = ({
1167
1167
  {
1168
1168
  placeholder,
1169
1169
  className: cn(
1170
- "w-full outline-none bg-transparent border-none ring-0 leading-0 p-0 h-6 text-base text-input-text placeholder:text-input-placeholder bg-none dark:bg-transparent",
1170
+ "w-full outline-none bg-transparent border-none ring-0 leading-0 p-0 h-6 text-base text-input-text placeholder:text-input-placeholder bg-none dark:bg-transparent focus-visible:ring-0 focus-visible:ring-offset-0",
1171
1171
  className
1172
1172
  ),
1173
1173
  value,
@@ -1358,7 +1358,7 @@ const TokenSelectModal = ({
1358
1358
  [groupedTokens.willChangeSrcChain]
1359
1359
  );
1360
1360
  const hasNoResults = tokensToRender.length === 0 && willChangeSrcTokens.length === 0;
1361
- return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (open) => !open && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "h-[90dvh] max-h-dvh overflow-hidden flex flex-col", children: [
1361
+ return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (open) => !open && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "max-h-[90dvh] h-[90dvh] overflow-hidden flex flex-col", children: [
1362
1362
  /* @__PURE__ */ jsx(DialogHeader, { children: /* @__PURE__ */ jsx(DialogTitle, { children: t2("bridge.selectToken") }) }),
1363
1363
  /* @__PURE__ */ jsx(
1364
1364
  SearchInput,
@@ -2381,7 +2381,7 @@ const ChainSelectModal = ({
2381
2381
  chain.chainKey
2382
2382
  );
2383
2383
  };
2384
- return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (open) => !open && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "!h-[90dvh] flex flex-col", children: [
2384
+ return /* @__PURE__ */ jsx(Dialog, { open: isOpen, onOpenChange: (open) => !open && handleClose(), children: /* @__PURE__ */ jsxs(DialogContent, { className: "max-h-[90dvh] h-[90dvh] overflow-hidden flex flex-col", children: [
2385
2385
  /* @__PURE__ */ jsx(DialogHeader, { children: /* @__PURE__ */ jsx(DialogTitle, { children: t2("bridge.selectNetwork") }) }),
2386
2386
  /* @__PURE__ */ jsx(
2387
2387
  SearchInput,