@forge-connect/react 1.0.10 → 1.0.12
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.cjs +275 -182
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +300 -207
- package/dist/index.js.map +1 -1
- package/dist/styles.css +45 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -299,6 +299,51 @@ img.fc-logo {
|
|
|
299
299
|
opacity: 0.7;
|
|
300
300
|
}
|
|
301
301
|
|
|
302
|
+
/* ── Nomu trust pill ── */
|
|
303
|
+
|
|
304
|
+
.fc-nomu-wrap {
|
|
305
|
+
display: flex;
|
|
306
|
+
justify-content: center;
|
|
307
|
+
margin-top: 18px;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.fc-nomu-pill {
|
|
311
|
+
display: inline-flex;
|
|
312
|
+
align-items: center;
|
|
313
|
+
gap: 6px;
|
|
314
|
+
padding: 5px 12px;
|
|
315
|
+
border-radius: 999px;
|
|
316
|
+
border: 1px solid color-mix(in oklab, var(--fc-text, #000) 15%, transparent);
|
|
317
|
+
background: color-mix(in oklab, var(--fc-text, #fff) 4%, transparent);
|
|
318
|
+
color: color-mix(in oklab, var(--fc-text, #000) 55%, transparent);
|
|
319
|
+
font-size: 11px;
|
|
320
|
+
line-height: 16px;
|
|
321
|
+
font-weight: 500;
|
|
322
|
+
text-decoration: none;
|
|
323
|
+
backdrop-filter: blur(8px);
|
|
324
|
+
-webkit-backdrop-filter: blur(8px);
|
|
325
|
+
transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.fc-nomu-pill:hover {
|
|
329
|
+
border-color: color-mix(in oklab, var(--fc-text, #000) 30%, transparent);
|
|
330
|
+
background: color-mix(in oklab, var(--fc-text, #fff) 8%, transparent);
|
|
331
|
+
color: color-mix(in oklab, var(--fc-text, #000) 85%, transparent);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.fc-nomu-logo {
|
|
335
|
+
height: 9px;
|
|
336
|
+
width: auto;
|
|
337
|
+
transform: translateY(-0.6px);
|
|
338
|
+
color: currentColor;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.fc-nomu-logo svg {
|
|
342
|
+
height: 100%;
|
|
343
|
+
width: auto;
|
|
344
|
+
display: block;
|
|
345
|
+
}
|
|
346
|
+
|
|
302
347
|
|
|
303
348
|
/* ── Buttons (base) ── */
|
|
304
349
|
|