tiny styling change

This commit is contained in:
EthanHealy01 2025-08-15 20:12:43 +01:00
parent 3359361730
commit c76df73154
2 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export function adjustFontSizeToFit(
element.style.overflowWrap = 'normal';
// Disable automatic hyphenation to avoid mid-word breaks; use only manual opportunities
element.style.setProperty('hyphens', 'manual');
element.style.overflow = 'hidden';
element.style.overflow = 'visible';
const minFontPx = baseFontPx * minScale;
const stepPx = Math.max(0.5, baseFontPx * stepScale);

View File

@ -48,6 +48,7 @@
font-size: 0.75rem;
color: var(--tool-subcategory-text-color);
white-space: nowrap;
overflow: visible;
}
.tool-subcategory-row-rule {