From 04149c048e104641b5b8bbe06441abe0b6055d87 Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Sun, 17 May 2026 14:15:48 +0200 Subject: [PATCH] fix(settings): server row actions wrap inside the card at narrow widths (#751) The action cluster (Test Connection / Use / Delete) had `flex-shrink: 0` and the parent flex row had no `flex-wrap`, so on narrower Settings panes the buttons spilled past the card's right edge instead of flowing under the server info. Enable `flex-wrap: wrap` on the parent and pin the actions with `margin-left: auto` so they stay right-aligned when they wrap to a new line. --- src/components/settings/ServersTab.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/settings/ServersTab.tsx b/src/components/settings/ServersTab.tsx index 16b52f41..5b2cd9ba 100644 --- a/src/components/settings/ServersTab.tsx +++ b/src/components/settings/ServersTab.tsx @@ -213,7 +213,7 @@ export function ServersTab({ >
-
+
{serverListDisplayLabel(srv, auth.servers)} @@ -236,7 +236,7 @@ export function ServersTab({ {srv.username}
-
+
{status === 'ok' && } {status === 'error' && } {status === 'testing' &&
}