@pitvox/partner-react 0.5.2 → 0.5.3
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 +10 -4
- package/dist/index.cjs +1 -1
- package/dist/index.js +329 -323
- package/dist/styles.css +12 -5
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1959,11 +1959,10 @@
|
|
|
1959
1959
|
flex-shrink: 0;
|
|
1960
1960
|
}
|
|
1961
1961
|
|
|
1962
|
-
.pvx-dash-tooltip
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
padding-top: 0.25rem;
|
|
1962
|
+
.pvx-dash-tooltip--scrollable {
|
|
1963
|
+
max-height: 20rem;
|
|
1964
|
+
overflow-y: auto;
|
|
1965
|
+
pointer-events: auto;
|
|
1967
1966
|
}
|
|
1968
1967
|
|
|
1969
1968
|
/* ─── Records list (compact layout) ───────────────────────────── */
|
|
@@ -2145,6 +2144,14 @@
|
|
|
2145
2144
|
color: #fff;
|
|
2146
2145
|
}
|
|
2147
2146
|
|
|
2147
|
+
.pvx-upcoming-remaining {
|
|
2148
|
+
padding: 0.5rem 0.75rem;
|
|
2149
|
+
font-size: 0.8125rem;
|
|
2150
|
+
color: var(--pvx-text-muted);
|
|
2151
|
+
text-align: center;
|
|
2152
|
+
border-top: 1px solid var(--pvx-border);
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2148
2155
|
/* ═══════════════════════════════════════════════════════════════════
|
|
2149
2156
|
Notifications
|
|
2150
2157
|
═══════════════════════════════════════════════════════════════════ */
|
package/package.json
CHANGED