@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.mjs CHANGED
@@ -11361,7 +11361,7 @@ function AssetSelectorBar({
11361
11361
  ] })
11362
11362
  ] })
11363
11363
  ] }, m.label)) }),
11364
- trailing != null && /* @__PURE__ */ jsx(TrailingWrapper, { children: trailing }),
11364
+ trailing != null && /* @__PURE__ */ jsx(TrailingWrapper, { children: /* @__PURE__ */ jsx(TrailingInner, { children: trailing }) }),
11365
11365
  isDropdownOpen && hasItems && /* @__PURE__ */ jsx(IPODropdown, { children: selectorItems.map((item) => {
11366
11366
  const isCurrent = item.tokenName === currentTokenName;
11367
11367
  const status = item.status?.toUpperCase();
@@ -11509,6 +11509,17 @@ var TrailingWrapper = styled9.div`
11509
11509
  &::-webkit-scrollbar { display: none; }
11510
11510
  }
11511
11511
  `;
11512
+ var TrailingInner = styled9.div`
11513
+ display: flex;
11514
+ align-items: center;
11515
+
11516
+ @media (max-width: 768px) {
11517
+ display: inline-flex;
11518
+ align-items: center;
11519
+ min-width: max-content;
11520
+ gap: 0.75rem;
11521
+ }
11522
+ `;
11512
11523
  var MetricLabel = styled9.span`
11513
11524
  font-size: 0.75rem;
11514
11525
  color: var(--color-text-secondary);