@pitvox/partner-react 0.5.3 → 0.5.5
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 +570 -542
- package/dist/styles.css +10 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -212,6 +212,10 @@
|
|
|
212
212
|
width: 4rem;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
.pvx-th--center {
|
|
216
|
+
text-align: center;
|
|
217
|
+
}
|
|
218
|
+
|
|
215
219
|
.pvx-th-inner {
|
|
216
220
|
display: inline-flex;
|
|
217
221
|
align-items: center;
|
|
@@ -1935,8 +1939,13 @@
|
|
|
1935
1939
|
font-size: 0.8125rem;
|
|
1936
1940
|
}
|
|
1937
1941
|
|
|
1938
|
-
.pvx-dash-stat-card--
|
|
1942
|
+
.pvx-dash-stat-card--clickable {
|
|
1943
|
+
cursor: pointer;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.pvx-dash-tooltip--open {
|
|
1939
1947
|
opacity: 1;
|
|
1948
|
+
pointer-events: auto;
|
|
1940
1949
|
}
|
|
1941
1950
|
|
|
1942
1951
|
.pvx-dash-tooltip-row {
|
package/package.json
CHANGED