fix(hikes): keep stat value + descriptor together in the metrics row

The metrics flex row stretched each tile to the tall route-icon's height,
so the grid's auto rows spread apart and pushed the value and its label to
opposite halves. Center the items instead of stretching.
This commit is contained in:
2026-05-24 10:17:45 +02:00
parent a2869c1d87
commit c155fc33b4
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "homepage",
"version": "1.86.0",
"version": "1.86.1",
"private": true,
"type": "module",
"scripts": {
+3
View File
@@ -689,6 +689,9 @@
display: flex;
flex-wrap: wrap;
justify-content: center;
/* Center, don't stretch: otherwise each tile is pulled to the tall
* route-icon's height and its value/descriptor rows spread apart. */
align-items: center;
gap: 1rem 2.25rem;
padding: 1.5rem 1rem;
color: var(--color-text-secondary);