@loafmarkets/ui 0.1.169 → 0.1.170

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
@@ -8669,41 +8669,38 @@ function PropertyOverview({
8669
8669
  ) }),
8670
8670
  /* @__PURE__ */ jsxs(Section, { children: [
8671
8671
  /* @__PURE__ */ jsx(SectionHeader, { children: "Asset Details" }),
8672
- /* @__PURE__ */ jsxs(AssetPanelsGrid, { children: [
8673
- /* @__PURE__ */ jsxs(MetricsPanel, { children: [
8674
- /* @__PURE__ */ jsx(MetricsPanelTitle, { children: "Key Metrics" }),
8675
- (landSize != null || buildingSize != null) && /* @__PURE__ */ jsxs(LandFloorCard, { children: [
8676
- /* @__PURE__ */ jsxs("div", { style: { flex: 1 }, children: [
8677
- /* @__PURE__ */ jsx(MetricLabel, { children: "Land" }),
8678
- /* @__PURE__ */ jsxs(MetricValueRow, { children: [
8679
- /* @__PURE__ */ jsx(MetricBig, { children: landSize?.toLocaleString() ?? "\u2014" }),
8680
- /* @__PURE__ */ jsx(MetricUnit, { children: "sqm" })
8681
- ] })
8682
- ] }),
8683
- /* @__PURE__ */ jsx("div", { style: { width: 1, background: "rgba(212,175,55,0.3)" } }),
8684
- /* @__PURE__ */ jsxs("div", { style: { flex: 1 }, children: [
8685
- /* @__PURE__ */ jsx(MetricLabel, { children: "Floor" }),
8686
- /* @__PURE__ */ jsxs(MetricValueRow, { children: [
8687
- /* @__PURE__ */ jsx(MetricBig, { children: buildingSize?.toLocaleString() ?? "\u2014" }),
8688
- /* @__PURE__ */ jsx(MetricUnit, { children: "sqm" })
8689
- ] })
8672
+ /* @__PURE__ */ jsxs(StatsGrid, { children: [
8673
+ /* @__PURE__ */ jsxs(StatsColumn, { children: [
8674
+ /* @__PURE__ */ jsx(StatsColumnHeader, { children: "Key Metrics" }),
8675
+ landSize != null && /* @__PURE__ */ jsxs(StatRow, { children: [
8676
+ /* @__PURE__ */ jsx(StatLabel, { children: "Land Size" }),
8677
+ /* @__PURE__ */ jsxs(StatValue, { children: [
8678
+ landSize.toLocaleString(),
8679
+ " sqm"
8680
+ ] })
8681
+ ] }),
8682
+ buildingSize != null && /* @__PURE__ */ jsxs(StatRow, { children: [
8683
+ /* @__PURE__ */ jsx(StatLabel, { children: "Floor Area" }),
8684
+ /* @__PURE__ */ jsxs(StatValue, { children: [
8685
+ buildingSize.toLocaleString(),
8686
+ " sqm"
8690
8687
  ] })
8691
8688
  ] }),
8692
- /* @__PURE__ */ jsx(FeaturesGrid, { children: features.map((item, i) => /* @__PURE__ */ jsxs("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
8693
- item.icon && /* @__PURE__ */ jsx("span", { style: { color: "rgba(255,255,255,0.6)", display: "flex", alignItems: "center", opacity: 0.45, flexShrink: 0 }, children: item.icon }),
8694
- item.value && /* @__PURE__ */ jsx("span", { style: { fontSize: "1.1rem", fontWeight: 700, color: "#fff", lineHeight: 1 }, children: item.value }),
8695
- /* @__PURE__ */ jsx("span", { style: { fontSize: "0.85rem", color: "rgba(255,255,255,0.6)", fontWeight: 400 }, children: item.label })
8689
+ /* @__PURE__ */ jsx(AssetFeatureRow, { children: features.map((item, i) => /* @__PURE__ */ jsxs(AssetFeatureItem, { children: [
8690
+ item.icon && /* @__PURE__ */ jsx(AssetFeatureIcon, { children: item.icon }),
8691
+ item.value && /* @__PURE__ */ jsx(AssetFeatureValue, { children: item.value }),
8692
+ /* @__PURE__ */ jsx(AssetFeatureLabel, { children: item.label })
8696
8693
  ] }, i)) })
8697
8694
  ] }),
8698
- /* @__PURE__ */ jsxs(InfoPanel, { children: [
8699
- /* @__PURE__ */ jsx(MetricsPanelTitle, { children: "Property Info" }),
8700
- /* @__PURE__ */ jsx("div", { style: { display: "flex", flexDirection: "column", gap: "0.85rem" }, children: propertyInfo.map((item, i) => /* @__PURE__ */ jsxs("div", { style: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
8701
- /* @__PURE__ */ jsx("span", { style: { fontSize: "0.8rem", color: "rgba(255,255,255,0.6)", fontWeight: 400 }, children: item.label }),
8702
- /* @__PURE__ */ jsxs("span", { style: { fontSize: "0.95rem", fontWeight: 600, color: item.status === "active" ? "#4CAF50" : item.status === "progress" ? "#D4AF37" : "#fff", display: "flex", alignItems: "center", gap: "0.4rem" }, children: [
8703
- item.status && /* @__PURE__ */ jsx("span", { style: { display: "inline-block", width: 6, height: 6, borderRadius: "50%", background: item.status === "active" ? "#4CAF50" : "#D4AF37", boxShadow: item.status === "active" ? "0 0 6px rgba(76,175,80,0.5)" : "0 0 6px rgba(212,175,55,0.5)" } }),
8695
+ /* @__PURE__ */ jsxs(StatsColumn, { children: [
8696
+ /* @__PURE__ */ jsx(StatsColumnHeader, { children: "Property Info" }),
8697
+ propertyInfo.map((item, i) => /* @__PURE__ */ jsxs(StatRow, { children: [
8698
+ /* @__PURE__ */ jsx(StatLabel, { children: item.label }),
8699
+ /* @__PURE__ */ jsxs(StatValue, { style: { color: item.status === "active" ? "#4ade80" : item.status === "progress" ? "#D4AF37" : void 0 }, children: [
8700
+ item.status && /* @__PURE__ */ jsx("span", { style: { display: "inline-block", width: 6, height: 6, borderRadius: "50%", background: item.status === "active" ? "#4ade80" : "#D4AF37", marginRight: 6 } }),
8704
8701
  item.value
8705
8702
  ] })
8706
- ] }, i)) })
8703
+ ] }, i))
8707
8704
  ] })
8708
8705
  ] })
8709
8706
  ] }),
@@ -8735,46 +8732,71 @@ function PropertyOverview({
8735
8732
  ] }),
8736
8733
  /* @__PURE__ */ jsxs(Section, { children: [
8737
8734
  /* @__PURE__ */ jsx(SectionHeader, { children: "Tokenholder Security" }),
8738
- /* @__PURE__ */ jsxs(SecurityTable, { children: [
8739
- /* @__PURE__ */ jsxs(SecurityRow, { children: [
8740
- /* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
8741
- /* @__PURE__ */ jsx(SecurityRowLabel, { children: "Legal Structuring" }),
8742
- /* @__PURE__ */ jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: "22px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
8743
- ] }),
8744
- /* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxs(SecurityRowLinks, { children: [
8745
- /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Legal Opinion" }),
8746
- /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Structuring Memo" })
8747
- ] }) })
8735
+ /* @__PURE__ */ jsxs(SecurityCardsGrid, { children: [
8736
+ /* @__PURE__ */ jsxs(SecurityCard, { children: [
8737
+ /* @__PURE__ */ jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8738
+ /* @__PURE__ */ jsx("path", { d: "M9 12l2 2 4-4" }),
8739
+ /* @__PURE__ */ jsx("path", { d: "M12 3l8 4.5v5c0 5-3.5 8.5-8 10.5-4.5-2-8-5.5-8-10.5v-5l8-4.5z" })
8740
+ ] }) }),
8741
+ /* @__PURE__ */ jsxs(SecurityCardContent, { children: [
8742
+ /* @__PURE__ */ jsx(SecurityCardTitle, { children: "Legal Structuring" }),
8743
+ /* @__PURE__ */ jsx(SecurityCardProvider, { children: /* @__PURE__ */ jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 16, filter: "brightness(0) invert(1)", opacity: 0.7 } }) }),
8744
+ /* @__PURE__ */ jsxs(SecurityCardLinks, { children: [
8745
+ /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Legal Opinion" }),
8746
+ /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Structuring Memo" })
8747
+ ] })
8748
+ ] })
8748
8749
  ] }),
8749
- /* @__PURE__ */ jsxs(SecurityRow, { children: [
8750
- /* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
8751
- /* @__PURE__ */ jsx(SecurityRowLabel, { children: "Security Interest in Asset" }),
8752
- /* @__PURE__ */ jsxs(SecurityRowValue, { children: [
8750
+ /* @__PURE__ */ jsxs(SecurityCard, { children: [
8751
+ /* @__PURE__ */ jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8752
+ /* @__PURE__ */ jsx("rect", { x: "3", y: "11", width: "18", height: "11", rx: "2" }),
8753
+ /* @__PURE__ */ jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
8754
+ ] }) }),
8755
+ /* @__PURE__ */ jsxs(SecurityCardContent, { children: [
8756
+ /* @__PURE__ */ jsx(SecurityCardTitle, { children: "Security Interest in Asset" }),
8757
+ /* @__PURE__ */ jsxs(SecurityCardStatus, { children: [
8753
8758
  /* @__PURE__ */ jsx(SecurityStatusDot, {}),
8754
8759
  "Secured \u2014 NSW Land Registry"
8760
+ ] }),
8761
+ /* @__PURE__ */ jsxs(SecurityCardLinks, { children: [
8762
+ /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Mortgage Agreement" }),
8763
+ /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Registry Filing" })
8755
8764
  ] })
8756
- ] }),
8757
- /* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxs(SecurityRowLinks, { children: [
8758
- /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Mortgage Agreement" }),
8759
- /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Registry Filing" })
8760
- ] }) })
8765
+ ] })
8761
8766
  ] }),
8762
- /* @__PURE__ */ jsxs(SecurityRow, { children: [
8763
- /* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
8764
- /* @__PURE__ */ jsx(SecurityRowLabel, { children: "Bankruptcy Remote" }),
8765
- /* @__PURE__ */ jsxs(SecurityRowValue, { children: [
8767
+ /* @__PURE__ */ jsxs(SecurityCard, { children: [
8768
+ /* @__PURE__ */ jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8769
+ /* @__PURE__ */ jsx("path", { d: "M3 21h18" }),
8770
+ /* @__PURE__ */ jsx("path", { d: "M5 21V7l8-4v18" }),
8771
+ /* @__PURE__ */ jsx("path", { d: "M19 21V11l-6-4" }),
8772
+ /* @__PURE__ */ jsx("path", { d: "M9 9v.01" }),
8773
+ /* @__PURE__ */ jsx("path", { d: "M9 12v.01" }),
8774
+ /* @__PURE__ */ jsx("path", { d: "M9 15v.01" }),
8775
+ /* @__PURE__ */ jsx("path", { d: "M9 18v.01" })
8776
+ ] }) }),
8777
+ /* @__PURE__ */ jsxs(SecurityCardContent, { children: [
8778
+ /* @__PURE__ */ jsx(SecurityCardTitle, { children: "Bankruptcy Remote" }),
8779
+ /* @__PURE__ */ jsxs(SecurityCardStatus, { children: [
8766
8780
  /* @__PURE__ */ jsx(SecurityStatusDot, {}),
8767
8781
  "Active \u2014 Dedicated SPV"
8768
- ] })
8769
- ] }),
8770
- /* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) }) })
8782
+ ] }),
8783
+ /* @__PURE__ */ jsx(SecurityCardLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) })
8784
+ ] })
8771
8785
  ] }),
8772
- /* @__PURE__ */ jsxs(SecurityRow, { $noBorder: true, children: [
8773
- /* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
8774
- /* @__PURE__ */ jsx(SecurityRowLabel, { children: "Independent Valuation" }),
8775
- /* @__PURE__ */ jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsx("img", { src: "/savills.png", alt: "Savills", style: { height: "18px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
8776
- ] }),
8777
- /* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) }) })
8786
+ /* @__PURE__ */ jsxs(SecurityCard, { children: [
8787
+ /* @__PURE__ */ jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8788
+ /* @__PURE__ */ jsx("path", { d: "M16 3h5v5" }),
8789
+ /* @__PURE__ */ jsx("path", { d: "M8 3H3v5" }),
8790
+ /* @__PURE__ */ jsx("path", { d: "M12 22l-4-4 4-4" }),
8791
+ /* @__PURE__ */ jsx("path", { d: "M12 22l4-4-4-4" }),
8792
+ /* @__PURE__ */ jsx("path", { d: "M21 3l-9 9" }),
8793
+ /* @__PURE__ */ jsx("path", { d: "M3 3l9 9" })
8794
+ ] }) }),
8795
+ /* @__PURE__ */ jsxs(SecurityCardContent, { children: [
8796
+ /* @__PURE__ */ jsx(SecurityCardTitle, { children: "Independent Valuation" }),
8797
+ /* @__PURE__ */ jsx(SecurityCardProvider, { children: /* @__PURE__ */ jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 14, filter: "brightness(0) invert(1)", opacity: 0.7 } }) }),
8798
+ /* @__PURE__ */ jsx(SecurityCardLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) })
8799
+ ] })
8778
8800
  ] })
8779
8801
  ] })
8780
8802
  ] })
@@ -9106,68 +9128,35 @@ var StatValue = styled9.span`
9106
9128
  color: ${(p) => p.$gold ? "#D4AF37" : "#fff"};
9107
9129
  font-variant-numeric: tabular-nums;
9108
9130
  `;
9109
- var AssetPanelsGrid = styled9.div`
9110
- display: grid;
9111
- grid-template-columns: 1fr 1fr;
9112
- gap: 1rem;
9113
- @media (max-width: 768px) { grid-template-columns: 1fr; }
9114
- `;
9115
- var MetricsPanel = styled9.div`
9116
- background: rgba(255,255,255,0.025);
9117
- border-radius: 10px;
9118
- border: 1px solid rgba(255,255,255,0.06);
9119
- padding: 1.25rem 1.5rem;
9120
- overflow: hidden;
9121
- `;
9122
- var InfoPanel = styled9(MetricsPanel)``;
9123
- var MetricsPanelTitle = styled9.div`
9124
- font-size: 0.65rem;
9125
- color: #D4AF37;
9126
- text-transform: uppercase;
9127
- letter-spacing: 0.12em;
9128
- font-weight: 600;
9129
- margin-bottom: 1rem;
9130
- padding-bottom: 0.75rem;
9131
- border-bottom: 1px solid rgba(255,255,255,0.06);
9132
- `;
9133
- var LandFloorCard = styled9.div`
9134
- background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(184,134,11,0.06));
9135
- border-radius: 10px;
9136
- padding: 0.85rem 1rem;
9137
- border: 1px solid rgba(212,175,55,0.25);
9131
+ var AssetFeatureRow = styled9.div`
9138
9132
  display: flex;
9139
- gap: 1rem;
9140
- margin-bottom: 0.75rem;
9133
+ flex-wrap: wrap;
9134
+ gap: 0.5rem 1.25rem;
9135
+ padding-top: 0.75rem;
9136
+ margin-top: 0.25rem;
9137
+ border-top: 1px solid rgba(255,255,255,0.04);
9141
9138
  `;
9142
- var MetricLabel = styled9.div`
9143
- font-size: 0.65rem;
9144
- color: #D4AF37;
9145
- text-transform: uppercase;
9146
- letter-spacing: 0.1em;
9147
- margin-bottom: 0.4rem;
9148
- font-weight: 500;
9139
+ var AssetFeatureItem = styled9.div`
9140
+ display: flex;
9141
+ align-items: center;
9142
+ gap: 0.35rem;
9149
9143
  `;
9150
- var MetricValueRow = styled9.div`
9144
+ var AssetFeatureIcon = styled9.span`
9145
+ color: rgba(255,255,255,0.35);
9151
9146
  display: flex;
9152
- align-items: baseline;
9153
- gap: 0.25rem;
9147
+ align-items: center;
9148
+ flex-shrink: 0;
9154
9149
  `;
9155
- var MetricBig = styled9.span`
9156
- font-size: 1.5rem;
9157
- font-weight: 700;
9158
- color: #D4AF37;
9150
+ var AssetFeatureValue = styled9.span`
9151
+ font-size: 0.95rem;
9152
+ font-weight: 600;
9153
+ color: #fff;
9159
9154
  line-height: 1;
9160
9155
  `;
9161
- var MetricUnit = styled9.span`
9162
- font-size: 0.7rem;
9163
- color: rgba(212,175,55,0.7);
9164
- font-weight: 500;
9165
- `;
9166
- var FeaturesGrid = styled9.div`
9167
- display: grid;
9168
- grid-template-columns: repeat(3, 1fr);
9169
- gap: 0.75rem;
9170
- @media (max-width: 768px) { grid-template-columns: repeat(2, 1fr); }
9156
+ var AssetFeatureLabel = styled9.span`
9157
+ font-size: 0.8rem;
9158
+ color: rgba(255,255,255,0.5);
9159
+ font-weight: 400;
9171
9160
  `;
9172
9161
  var TradingHoursCard = styled9.div`
9173
9162
  background: rgba(255,255,255,0.025);
@@ -9202,40 +9191,56 @@ var TradingHoursNote = styled9.div`
9202
9191
  color: rgba(255,255,255,0.35);
9203
9192
  border-top: 1px solid rgba(255,255,255,0.04);
9204
9193
  `;
9205
- var SecurityTable = styled9.div`
9194
+ var SecurityCardsGrid = styled9.div`
9195
+ display: grid;
9196
+ grid-template-columns: 1fr 1fr;
9197
+ gap: 0.75rem;
9198
+ @media (max-width: 768px) { grid-template-columns: 1fr; }
9199
+ `;
9200
+ var SecurityCard = styled9.div`
9201
+ background: rgba(255,255,255,0.025);
9202
+ border: 1px solid rgba(255,255,255,0.06);
9203
+ border-radius: 10px;
9204
+ padding: 1.25rem;
9206
9205
  display: flex;
9207
- flex-direction: column;
9206
+ gap: 1rem;
9207
+ transition: border-color 0.2s ease;
9208
+ &:hover { border-color: rgba(255,255,255,0.12); }
9208
9209
  `;
9209
- var SecurityRow = styled9.div`
9210
+ var SecurityCardIcon = styled9.div`
9211
+ width: 40px;
9212
+ height: 40px;
9213
+ border-radius: 10px;
9214
+ background: rgba(74,222,128,0.08);
9215
+ border: 1px solid rgba(74,222,128,0.15);
9210
9216
  display: flex;
9211
9217
  align-items: center;
9212
- justify-content: space-between;
9213
- padding: 1rem 0;
9214
- border-bottom: ${({ $noBorder }) => $noBorder ? "none" : "1px solid rgba(255,255,255,0.06)"};
9215
- gap: 1rem;
9216
- @media (max-width: 640px) { flex-direction: column; align-items: flex-start; }
9218
+ justify-content: center;
9219
+ flex-shrink: 0;
9220
+ color: #4ade80;
9217
9221
  `;
9218
- var SecurityRowLeft = styled9.div`
9222
+ var SecurityCardContent = styled9.div`
9219
9223
  display: flex;
9220
9224
  flex-direction: column;
9221
9225
  gap: 4px;
9226
+ min-width: 0;
9222
9227
  `;
9223
- var SecurityRowLabel = styled9.div`
9224
- font-size: 0.88rem;
9228
+ var SecurityCardTitle = styled9.div`
9229
+ font-size: 0.85rem;
9225
9230
  font-weight: 600;
9226
9231
  color: #fff;
9227
9232
  `;
9228
- var SecurityRowValue = styled9.div`
9233
+ var SecurityCardStatus = styled9.div`
9229
9234
  display: flex;
9230
9235
  align-items: center;
9231
9236
  gap: 6px;
9232
- font-size: 0.78rem;
9237
+ font-size: 0.75rem;
9233
9238
  color: rgba(255,255,255,0.5);
9234
9239
  `;
9235
- var SecurityRowLogo = styled9.div`
9240
+ var SecurityCardProvider = styled9.div`
9236
9241
  display: flex;
9237
9242
  align-items: center;
9238
- margin-top: 2px;
9243
+ margin-top: 1px;
9239
9244
  `;
9240
9245
  var SecurityStatusDot = styled9.span`
9241
9246
  width: 6px;
@@ -9245,21 +9250,17 @@ var SecurityStatusDot = styled9.span`
9245
9250
  display: inline-block;
9246
9251
  flex-shrink: 0;
9247
9252
  `;
9248
- var SecurityRowRight = styled9.div`
9249
- display: flex;
9250
- align-items: center;
9251
- flex-shrink: 0;
9252
- `;
9253
- var SecurityRowLinks = styled9.div`
9253
+ var SecurityCardLinks = styled9.div`
9254
9254
  display: flex;
9255
- gap: 1.25rem;
9255
+ gap: 0.75rem;
9256
+ margin-top: 4px;
9256
9257
  `;
9257
9258
  var SecurityDocLink = styled9.a`
9258
- font-size: 0.78rem;
9259
- color: rgba(255,255,255,0.45);
9259
+ font-size: 0.72rem;
9260
+ color: rgba(255,255,255,0.4);
9260
9261
  text-decoration: underline;
9261
9262
  text-underline-offset: 3px;
9262
- text-decoration-color: rgba(255,255,255,0.2);
9263
+ text-decoration-color: rgba(255,255,255,0.15);
9263
9264
  cursor: pointer;
9264
9265
  transition: color 0.15s, text-decoration-color 0.15s;
9265
9266
  &:hover {
@@ -10532,7 +10533,7 @@ function AssetSelectorBar({
10532
10533
  i > 0 && /* @__PURE__ */ jsx(Separator, { children: "|" }),
10533
10534
  /* @__PURE__ */ jsxs("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
10534
10535
  /* @__PURE__ */ jsxs("div", { children: [
10535
- /* @__PURE__ */ jsx(MetricLabel2, { children: m.label }),
10536
+ /* @__PURE__ */ jsx(MetricLabel, { children: m.label }),
10536
10537
  /* @__PURE__ */ jsx(MetricValue, { $accent: !!m.accent, $secondary: !!m.secondary, children: m.value })
10537
10538
  ] }),
10538
10539
  m.change != null && /* @__PURE__ */ jsxs(MetricChange, { $positive: m.change >= 0, children: [
@@ -10672,7 +10673,7 @@ var SelectorMetrics = styled9.div`
10672
10673
  gap: 0.5rem;
10673
10674
  }
10674
10675
  `;
10675
- var MetricLabel2 = styled9.span`
10676
+ var MetricLabel = styled9.span`
10676
10677
  font-size: 0.75rem;
10677
10678
  color: var(--color-text-secondary);
10678
10679
  text-transform: uppercase;
@@ -10981,14 +10982,14 @@ function OfferingProgressCard({
10981
10982
  ] }) : /* @__PURE__ */ jsx(PreLiveStatus, { $statusColor: statusColor, children: "Sale Not Yet Open" }),
10982
10983
  /* @__PURE__ */ jsxs(MetricsRow, { children: [
10983
10984
  /* @__PURE__ */ jsxs("div", { children: [
10984
- /* @__PURE__ */ jsx(MetricLabel3, { children: isPrivateClient ? "Token Price (Pre-Offering)" : "Token Price" }),
10985
+ /* @__PURE__ */ jsx(MetricLabel2, { children: isPrivateClient ? "Token Price (Pre-Offering)" : "Token Price" }),
10985
10986
  /* @__PURE__ */ jsxs(MetricValue2, { $accent: true, children: [
10986
10987
  "$",
10987
10988
  tokenPrice.toLocaleString(void 0, { minimumFractionDigits: 2, maximumFractionDigits: 2 })
10988
10989
  ] })
10989
10990
  ] }),
10990
10991
  /* @__PURE__ */ jsxs("div", { style: { textAlign: "right" }, children: [
10991
- /* @__PURE__ */ jsx(MetricLabel3, { children: isPrivateClient ? "Offering Valuation (Pre-Offering)" : "Offering Valuation" }),
10992
+ /* @__PURE__ */ jsx(MetricLabel2, { children: isPrivateClient ? "Offering Valuation (Pre-Offering)" : "Offering Valuation" }),
10992
10993
  /* @__PURE__ */ jsxs(MetricValue2, { children: [
10993
10994
  "$",
10994
10995
  offeringValuation.toLocaleString()
@@ -11113,7 +11114,7 @@ var MetricsRow = styled9.div`
11113
11114
  border-top: 1px solid rgba(255,255,255,0.06);
11114
11115
  padding-top: 1rem;
11115
11116
  `;
11116
- var MetricLabel3 = styled9.div`
11117
+ var MetricLabel2 = styled9.div`
11117
11118
  font-size: 0.6rem;
11118
11119
  color: var(--color-text-secondary);
11119
11120
  text-transform: uppercase;