From 3b846f0d44ef159b42eef5e45b02640299568c34 Mon Sep 17 00:00:00 2001 From: 3252a8 <3252a8@proton.me> Date: Tue, 19 May 2026 15:38:04 +0300 Subject: [PATCH] fix: tune visual of setup password button --- frontend/src/styles/webapp.css | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/frontend/src/styles/webapp.css b/frontend/src/styles/webapp.css index 0f49f5d..3427838 100644 --- a/frontend/src/styles/webapp.css +++ b/frontend/src/styles/webapp.css @@ -1291,13 +1291,16 @@ a { } .settings-row-linked-with-action { - grid-template-columns: 28px minmax(0, 1fr) max-content; + grid-template-columns: 28px minmax(0, 1fr); + row-gap: 8px; } .settings-inline-action { - justify-self: end; + grid-column: 1 / -1; + justify-self: stretch; + width: 100%; min-height: 34px; - max-width: 132px; + max-width: none; padding-left: 10px; padding-right: 10px; font-size: 11px; @@ -2337,6 +2340,18 @@ a { min-height: 48px; } + .settings-row-linked-with-action { + grid-template-columns: 28px minmax(0, 1fr) max-content; + row-gap: 0; + } + + .settings-row-linked-with-action .settings-inline-action { + grid-column: auto; + justify-self: end; + width: auto; + max-width: 132px; + } + .settings-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;