@loafmarkets/ui 0.1.339 → 0.1.340

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.js CHANGED
@@ -11387,7 +11387,7 @@ function AssetSelectorBar({
11387
11387
  ] })
11388
11388
  ] })
11389
11389
  ] }, m.label)) }),
11390
- trailing != null && /* @__PURE__ */ jsxRuntime.jsx(TrailingWrapper, { children: trailing }),
11390
+ trailing != null && /* @__PURE__ */ jsxRuntime.jsx(TrailingWrapper, { children: /* @__PURE__ */ jsxRuntime.jsx(TrailingInner, { children: trailing }) }),
11391
11391
  isDropdownOpen && hasItems && /* @__PURE__ */ jsxRuntime.jsx(IPODropdown, { children: selectorItems.map((item) => {
11392
11392
  const isCurrent = item.tokenName === currentTokenName;
11393
11393
  const status = item.status?.toUpperCase();
@@ -11535,6 +11535,17 @@ var TrailingWrapper = styled9__default.default.div`
11535
11535
  &::-webkit-scrollbar { display: none; }
11536
11536
  }
11537
11537
  `;
11538
+ var TrailingInner = styled9__default.default.div`
11539
+ display: flex;
11540
+ align-items: center;
11541
+
11542
+ @media (max-width: 768px) {
11543
+ display: inline-flex;
11544
+ align-items: center;
11545
+ min-width: max-content;
11546
+ gap: 0.75rem;
11547
+ }
11548
+ `;
11538
11549
  var MetricLabel = styled9__default.default.span`
11539
11550
  font-size: 0.75rem;
11540
11551
  color: var(--color-text-secondary);