so close.. I think this is it.

This commit is contained in:
stopflock
2026-07-15 14:11:35 -05:00
parent 688520c4b0
commit 48ddb1c947
+17
View File
@@ -139,5 +139,22 @@ const getInvolvedLinks = [
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 24px;
}
/* Grid items default to min-width: auto, which uses each item's intrinsic
(unwrapped) content width as a floor — that floor can exceed the
minmax() track size above, silently overflowing the track and clipping
text (e.g. the "e" in "Service") right at the container edge instead of
actually reflowing to a new row. Forcing min-width: 0 here lets the grid
track's own sizing win, and letting the title text wrap (overriding
Vuetify's default single-line ellipsis) means long labels fold onto a
second line instead of being cut off. */
.footer-links-grid > div {
min-width: 0;
}
.footer-links-grid :deep(.v-list-item-title) {
white-space: normal;
overflow-wrap: break-word;
}
</style>