@pitvox/partner-react 0.7.15 → 0.7.16
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/styles.css +12 -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 {
|
|
@@ -2161,7 +2165,9 @@
|
|
|
2161
2165
|
.pvx-dash-records-list {
|
|
2162
2166
|
display: flex;
|
|
2163
2167
|
flex-direction: column;
|
|
2164
|
-
|
|
2168
|
+
flex: 1;
|
|
2169
|
+
min-height: 0;
|
|
2170
|
+
max-height: 30rem;
|
|
2165
2171
|
overflow-y: auto;
|
|
2166
2172
|
}
|
|
2167
2173
|
|
|
@@ -2319,6 +2325,8 @@
|
|
|
2319
2325
|
.pvx-dash-combos-list {
|
|
2320
2326
|
display: flex;
|
|
2321
2327
|
flex-direction: column;
|
|
2328
|
+
flex: 1;
|
|
2329
|
+
min-height: 0;
|
|
2322
2330
|
max-height: 30rem;
|
|
2323
2331
|
overflow-y: auto;
|
|
2324
2332
|
}
|
|
@@ -2609,7 +2617,9 @@
|
|
|
2609
2617
|
.pvx-notif-list {
|
|
2610
2618
|
display: flex;
|
|
2611
2619
|
flex-direction: column;
|
|
2612
|
-
|
|
2620
|
+
flex: 1;
|
|
2621
|
+
min-height: 0;
|
|
2622
|
+
max-height: 30rem;
|
|
2613
2623
|
overflow-y: auto;
|
|
2614
2624
|
}
|
|
2615
2625
|
|
package/package.json
CHANGED