thinkwee commited on
Commit ·
2dcac27
1
Parent(s): 9200a73
fix chart container heights
Browse files- styles.css +4 -3
styles.css
CHANGED
|
@@ -234,7 +234,6 @@ body {
|
|
| 234 |
padding: 0.75rem;
|
| 235 |
border: 1px solid var(--border);
|
| 236 |
box-shadow: var(--shadow);
|
| 237 |
-
overflow: hidden;
|
| 238 |
}
|
| 239 |
|
| 240 |
.chart-card h3 {
|
|
@@ -253,13 +252,15 @@ body {
|
|
| 253 |
|
| 254 |
/* Chart Containers - Fixed heights */
|
| 255 |
.chart-container {
|
| 256 |
-
height:
|
| 257 |
width: 100%;
|
|
|
|
| 258 |
}
|
| 259 |
|
| 260 |
.chart-container-tall {
|
| 261 |
-
height:
|
| 262 |
width: 100%;
|
|
|
|
| 263 |
}
|
| 264 |
|
| 265 |
/* Footer */
|
|
|
|
| 234 |
padding: 0.75rem;
|
| 235 |
border: 1px solid var(--border);
|
| 236 |
box-shadow: var(--shadow);
|
|
|
|
| 237 |
}
|
| 238 |
|
| 239 |
.chart-card h3 {
|
|
|
|
| 252 |
|
| 253 |
/* Chart Containers - Fixed heights */
|
| 254 |
.chart-container {
|
| 255 |
+
height: 350px;
|
| 256 |
width: 100%;
|
| 257 |
+
min-height: 350px;
|
| 258 |
}
|
| 259 |
|
| 260 |
.chart-container-tall {
|
| 261 |
+
height: 500px;
|
| 262 |
width: 100%;
|
| 263 |
+
min-height: 500px;
|
| 264 |
}
|
| 265 |
|
| 266 |
/* Footer */
|