fix(devices): wrap authorized-device action buttons instead of clipping (#347)

.authorized-devices-actions forced its four buttons (Untrust, Trust
permanently, Device note, Delete) onto one non-wrapping, non-shrinking
line inside the fixed 26% actions column. At common desktop widths the
row overflows the column and table-layout: fixed clips it at the panel
edge, cutting off Device note and hiding Delete entirely. Let the
buttons wrap to a second line instead.
This commit is contained in:
Cordero Core
2026-08-10 19:39:15 +08:00
committed by GitHub
parent f644baaf8d
commit ecc0d134ac
+3 -1
View File
@@ -1879,7 +1879,9 @@
}
.authorized-devices-actions {
flex-wrap: nowrap;
/* Wrap instead of clipping: four non-shrinking buttons overflow the
fixed 26% actions column at common widths, hiding Delete entirely. */
flex-wrap: wrap;
gap: 6px;
}