#72 allows names of talents to trail off when they no longer fit in the limited space.

main
macniel 2026-03-12 19:37:14 +01:00
parent efb9a415e4
commit 029f6dd325
1 changed files with 7 additions and 0 deletions

View File

@ -97,10 +97,17 @@ $rollable_colours_font: (
top: 0; top: 0;
height: 32px; height: 32px;
padding-left: 24px; padding-left: 24px;
display: grid;
grid-template-columns: 1fr 1fr;
span.name { span.name {
text-overflow: ellipsis;
overflow: hidden;
text-wrap: nowrap;
line-height: 32px; line-height: 32px;
vertical-align: middle; vertical-align: middle;
word-break: break-all;
margin-right: 8px;
} }
} }