From bb34e52997b64726633fe6bd568d0a675b957f8c Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 9 Dec 2025 17:04:20 +0000 Subject: [PATCH] Remove different responsive styling applied to logout buttons making them appear too wide. Now all buttons behave the same. --- frontend/src/components/ProfileView.vue | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/ProfileView.vue b/frontend/src/components/ProfileView.vue index f6a279d..e70329c 100644 --- a/frontend/src/components/ProfileView.vue +++ b/frontend/src/components/ProfileView.vue @@ -78,7 +78,7 @@
-
+
- +

Logout from {{ currentSessionHost }}.

@@ -221,11 +221,7 @@ const saveName = async () => { .section-header { display: flex; flex-direction: column; gap: 0.4rem; } .section-description { margin: 0; color: var(--color-text-muted); } .empty-state { margin: 0; color: var(--color-text-muted); text-align: center; padding: 1rem 0; } -.logout-button { align-self: flex-start; } -.logout-row { gap: 1rem; } -.logout-row.single { justify-content: flex-start; } .logout-note { margin: 0.75rem 0 0; color: var(--color-text-muted); font-size: 0.875rem; } .remote-auth-inline { display: flex; flex-direction: column; gap: 0.5rem; } .remote-auth-label { display: block; margin: 0; font-size: 0.875rem; color: var(--color-text-muted); font-weight: 500; } -@media (max-width: 720px) { .logout-button { width: 100%; } }