@aquera/nile-visualization 2.9.6 → 2.9.8
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.
|
@@ -135,7 +135,6 @@ export const styles = css `
|
|
|
135
135
|
width: 100%;
|
|
136
136
|
max-width: 100%;
|
|
137
137
|
box-sizing: border-box;
|
|
138
|
-
flex-shrink: 0;
|
|
139
138
|
}
|
|
140
139
|
|
|
141
140
|
.kpi-value-row {
|
|
@@ -145,7 +144,6 @@ export const styles = css `
|
|
|
145
144
|
flex-wrap: nowrap;
|
|
146
145
|
min-width: 0;
|
|
147
146
|
overflow: hidden;
|
|
148
|
-
flex-shrink: 0;
|
|
149
147
|
}
|
|
150
148
|
|
|
151
149
|
.kpi-value {
|
|
@@ -227,15 +225,13 @@ export const styles = css `
|
|
|
227
225
|
width: 100%;
|
|
228
226
|
max-width: 100%;
|
|
229
227
|
box-sizing: border-box;
|
|
230
|
-
flex-shrink: 1;
|
|
231
228
|
}
|
|
232
229
|
|
|
233
230
|
.kpi-sparkline {
|
|
234
231
|
width: 100%;
|
|
235
|
-
flex:
|
|
236
|
-
min-height:
|
|
232
|
+
flex: 0 1 48px;
|
|
233
|
+
min-height: 22px;
|
|
237
234
|
margin-top: var(--nile-spacing-xs, var(--ng-spacing-xs));
|
|
238
|
-
overflow: hidden;
|
|
239
235
|
}
|
|
240
236
|
|
|
241
237
|
/* ── Container queries: scale down for narrow cards ── */
|
|
@@ -268,7 +264,8 @@ export const styles = css `
|
|
|
268
264
|
}
|
|
269
265
|
|
|
270
266
|
.kpi-sparkline {
|
|
271
|
-
|
|
267
|
+
flex-basis: 32px;
|
|
268
|
+
min-height: 18px;
|
|
272
269
|
}
|
|
273
270
|
}
|
|
274
271
|
|