style: only truncate module name on mobile

- Remove max-width from desktop
- Apply truncation only in mobile media query
This commit is contained in:
2025-12-30 20:17:37 +01:00
parent b299c63ee3
commit db5c7980d6

View File

@@ -245,10 +245,6 @@ code, kbd {
.module-name {
text-transform: uppercase;
letter-spacing: 0.5px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 120px;
}
.module-pill .level-indicator {
@@ -1086,6 +1082,9 @@ input:checked + .toggle-slider::before {
}
.module-name {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 80px;
}