@pitvox/partner-react 0.7.15 → 0.7.17
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 +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +129 -128
- package/dist/styles.css +13 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -142,11 +142,14 @@
|
|
|
142
142
|
border: 1px solid var(--pvx-border);
|
|
143
143
|
background: var(--pvx-bg-card);
|
|
144
144
|
overflow: hidden;
|
|
145
|
+
display: flex;
|
|
146
|
+
flex-direction: column;
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
.pvx-card-header {
|
|
148
150
|
padding: 0.75rem 1rem;
|
|
149
151
|
border-bottom: 1px solid var(--pvx-border-header);
|
|
152
|
+
flex-shrink: 0;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
155
|
.pvx-card-header--split {
|
|
@@ -157,6 +160,7 @@
|
|
|
157
160
|
gap: 0.75rem;
|
|
158
161
|
padding: 0.75rem 1rem;
|
|
159
162
|
border-bottom: 1px solid var(--pvx-border-header);
|
|
163
|
+
flex-shrink: 0;
|
|
160
164
|
}
|
|
161
165
|
|
|
162
166
|
.pvx-card-header-left {
|
|
@@ -1975,6 +1979,7 @@
|
|
|
1975
1979
|
|
|
1976
1980
|
.pvx-dash-profile {
|
|
1977
1981
|
display: flex;
|
|
1982
|
+
flex-direction: row;
|
|
1978
1983
|
align-items: center;
|
|
1979
1984
|
gap: 1rem;
|
|
1980
1985
|
padding: 1.25rem 1.5rem;
|
|
@@ -2161,7 +2166,9 @@
|
|
|
2161
2166
|
.pvx-dash-records-list {
|
|
2162
2167
|
display: flex;
|
|
2163
2168
|
flex-direction: column;
|
|
2164
|
-
|
|
2169
|
+
flex: 1;
|
|
2170
|
+
min-height: 0;
|
|
2171
|
+
max-height: 30rem;
|
|
2165
2172
|
overflow-y: auto;
|
|
2166
2173
|
}
|
|
2167
2174
|
|
|
@@ -2319,6 +2326,8 @@
|
|
|
2319
2326
|
.pvx-dash-combos-list {
|
|
2320
2327
|
display: flex;
|
|
2321
2328
|
flex-direction: column;
|
|
2329
|
+
flex: 1;
|
|
2330
|
+
min-height: 0;
|
|
2322
2331
|
max-height: 30rem;
|
|
2323
2332
|
overflow-y: auto;
|
|
2324
2333
|
}
|
|
@@ -2609,7 +2618,9 @@
|
|
|
2609
2618
|
.pvx-notif-list {
|
|
2610
2619
|
display: flex;
|
|
2611
2620
|
flex-direction: column;
|
|
2612
|
-
|
|
2621
|
+
flex: 1;
|
|
2622
|
+
min-height: 0;
|
|
2623
|
+
max-height: 30rem;
|
|
2613
2624
|
overflow-y: auto;
|
|
2614
2625
|
}
|
|
2615
2626
|
|
package/package.json
CHANGED