@pitvox/partner-react 0.7.1 → 0.7.2
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 +1 -1
- package/dist/index.js +1107 -1056
- package/dist/styles.css +53 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -834,6 +834,59 @@
|
|
|
834
834
|
border-top: 1px solid var(--pvx-border);
|
|
835
835
|
}
|
|
836
836
|
|
|
837
|
+
/* ─── Completed badge (podium winners) ──────────────────────────── */
|
|
838
|
+
|
|
839
|
+
.pvx-comp-completed-badge {
|
|
840
|
+
display: flex;
|
|
841
|
+
flex-direction: column;
|
|
842
|
+
gap: 0.375rem;
|
|
843
|
+
padding-top: 0.5rem;
|
|
844
|
+
border-top: 1px solid var(--pvx-border);
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
.pvx-comp-completed-badge-label {
|
|
848
|
+
align-self: flex-start;
|
|
849
|
+
padding: 0.125rem 0.5rem;
|
|
850
|
+
border-radius: 9999px;
|
|
851
|
+
font-size: 0.6875rem;
|
|
852
|
+
font-weight: 600;
|
|
853
|
+
text-transform: uppercase;
|
|
854
|
+
letter-spacing: 0.03em;
|
|
855
|
+
background: rgba(34, 197, 94, 0.2);
|
|
856
|
+
color: #4ade80;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.pvx-comp-completed-badge-podium {
|
|
860
|
+
list-style: none;
|
|
861
|
+
padding: 0;
|
|
862
|
+
margin: 0;
|
|
863
|
+
display: flex;
|
|
864
|
+
flex-direction: column;
|
|
865
|
+
gap: 0.125rem;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.pvx-comp-completed-badge-driver {
|
|
869
|
+
display: flex;
|
|
870
|
+
align-items: center;
|
|
871
|
+
gap: 0.375rem;
|
|
872
|
+
font-size: 0.8125rem;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.pvx-comp-completed-badge-medal {
|
|
876
|
+
display: inline-flex;
|
|
877
|
+
width: 1.25rem;
|
|
878
|
+
justify-content: center;
|
|
879
|
+
font-size: 0.875rem;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.pvx-comp-completed-badge-name {
|
|
883
|
+
color: var(--pvx-text);
|
|
884
|
+
font-weight: 500;
|
|
885
|
+
overflow: hidden;
|
|
886
|
+
text-overflow: ellipsis;
|
|
887
|
+
white-space: nowrap;
|
|
888
|
+
}
|
|
889
|
+
|
|
837
890
|
/* ─── Competition badges & pills ────────────────────────────────── */
|
|
838
891
|
|
|
839
892
|
.pvx-comp-badge {
|
package/package.json
CHANGED