Commit ·
6dd2f86
1
Parent(s): c5d784c
Narrow the stat cards (cap column width, center grid)
Browse filesCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
frontend/src/components/datasets/protein/StatsPanel.css
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
.stats-panel {
|
| 2 |
display: grid;
|
| 3 |
-
grid-template-columns: repeat(2,
|
|
|
|
| 4 |
gap: 15px;
|
| 5 |
padding: 0;
|
| 6 |
}
|
|
|
|
| 1 |
.stats-panel {
|
| 2 |
display: grid;
|
| 3 |
+
grid-template-columns: repeat(2, minmax(0, 280px));
|
| 4 |
+
justify-content: center;
|
| 5 |
gap: 15px;
|
| 6 |
padding: 0;
|
| 7 |
}
|