fix(admin): prevent access badge text wrapping in index table

Add white-space: nowrap to .status-access so 'Interne'/'Interdit'
no longer break mid-word in the narrow Accès column.
This commit is contained in:
Pontoporeia
2026-09-18 16:26:49 +02:00
parent beff95c784
commit aa72aa5bc5
3 changed files with 18 additions and 7 deletions
@@ -5,6 +5,7 @@
.status-badge {
display: inline-block;
white-space: nowrap;
padding: var(--space-3xs) var(--space-2xs);
border-radius: var(--radius);
font-size: var(--step--2);
@@ -24,6 +25,7 @@
.status-access {
display: inline-block;
white-space: nowrap;
font-size: var(--step--2);
padding: var(--space-3xs) var(--space-3xs);
border-radius: var(--radius);