style: only truncate module name on mobile
Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled

- Remove max-width from desktop
- Apply truncation only in mobile media query

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-30 20:17:37 +01:00
parent c1e205c477
commit d27af461ef

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;
}