mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-08-10 17:00:12 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user