@pitvox/partner-react 0.6.2 → 0.6.4
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/README.md +25 -8
- package/dist/index.cjs +1 -1
- package/dist/index.js +990 -918
- package/dist/styles.css +58 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1362,6 +1362,64 @@
|
|
|
1362
1362
|
margin-top: 0.5rem;
|
|
1363
1363
|
}
|
|
1364
1364
|
|
|
1365
|
+
/* ─── Results tabs ─────────────────────────────────────────────── */
|
|
1366
|
+
|
|
1367
|
+
.pvx-results-tabs {
|
|
1368
|
+
display: flex;
|
|
1369
|
+
gap: 0.25rem;
|
|
1370
|
+
overflow-x: auto;
|
|
1371
|
+
border-bottom: 1px solid var(--pvx-border);
|
|
1372
|
+
margin-bottom: 1.5rem;
|
|
1373
|
+
scrollbar-width: thin;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.pvx-results-tab {
|
|
1377
|
+
display: flex;
|
|
1378
|
+
flex-direction: column;
|
|
1379
|
+
align-items: center;
|
|
1380
|
+
gap: 0.125rem;
|
|
1381
|
+
padding: 0.625rem 1rem;
|
|
1382
|
+
font-size: 0.8125rem;
|
|
1383
|
+
font-weight: 500;
|
|
1384
|
+
color: var(--pvx-text);
|
|
1385
|
+
opacity: 0.6;
|
|
1386
|
+
white-space: nowrap;
|
|
1387
|
+
cursor: pointer;
|
|
1388
|
+
border-bottom: 2px solid transparent;
|
|
1389
|
+
background: none;
|
|
1390
|
+
border-top: none;
|
|
1391
|
+
border-left: none;
|
|
1392
|
+
border-right: none;
|
|
1393
|
+
transition: color 0.15s, border-color 0.15s, opacity 0.15s;
|
|
1394
|
+
flex-shrink: 0;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.pvx-results-tab:hover {
|
|
1398
|
+
opacity: 0.85;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.pvx-results-tab--active {
|
|
1402
|
+
color: var(--pvx-text-primary);
|
|
1403
|
+
border-bottom-color: var(--pvx-accent);
|
|
1404
|
+
font-weight: 600;
|
|
1405
|
+
opacity: 1;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.pvx-results-tab-label {
|
|
1409
|
+
line-height: 1;
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
.pvx-results-tab-track {
|
|
1413
|
+
font-size: 0.6875rem;
|
|
1414
|
+
font-weight: 400;
|
|
1415
|
+
opacity: 0.7;
|
|
1416
|
+
line-height: 1;
|
|
1417
|
+
}
|
|
1418
|
+
|
|
1419
|
+
.pvx-results-tab--active .pvx-results-tab-track {
|
|
1420
|
+
opacity: 0.8;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1365
1423
|
/* ─── Accordion (round results) ────────────────────────────────── */
|
|
1366
1424
|
|
|
1367
1425
|
.pvx-comp-accordion {
|
package/package.json
CHANGED