From 029f6dd325746476d63937bed39e80b987d67d7d Mon Sep 17 00:00:00 2001 From: macniel Date: Thu, 12 Mar 2026 19:37:14 +0100 Subject: [PATCH] #72 allows names of talents to trail off when they no longer fit in the limited space. --- src/style/molecules/_rollable.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/style/molecules/_rollable.scss b/src/style/molecules/_rollable.scss index ca2d0893..6fd84646 100644 --- a/src/style/molecules/_rollable.scss +++ b/src/style/molecules/_rollable.scss @@ -97,10 +97,17 @@ $rollable_colours_font: ( top: 0; height: 32px; padding-left: 24px; + display: grid; + grid-template-columns: 1fr 1fr; span.name { + text-overflow: ellipsis; + overflow: hidden; + text-wrap: nowrap; line-height: 32px; vertical-align: middle; + word-break: break-all; + margin-right: 8px; } }