From 6cad8eb3abe7e698a6dbed2547422b00e0e9bf7c Mon Sep 17 00:00:00 2001 From: Max Amundsen Date: Fri, 7 Mar 2025 15:02:39 -0500 Subject: [PATCH] update login page --- handlers/auth/login.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/auth/login.go b/handlers/auth/login.go index dc76249..d945696 100644 --- a/handlers/auth/login.go +++ b/handlers/auth/login.go @@ -147,7 +147,7 @@ func LoginView(errorMsg string) Node { } `), Div( - InlineStyle("$me { display: flex; flex-direction: row; align-items: center; gap: $4;}"), + InlineStyle("$me { display: flex; flex-direction: row; align-items: center; gap: $2;}"), Icon(ICON_LOCK_KEYHOLE, 24), Text("Secure Sign In"), ), ), @@ -178,7 +178,7 @@ func LoginView(errorMsg string) Node { Type("checkbox"), ), Label( - InlineStyle("$me { margin-left: $3; display: inline; font-size: var(--text-xs); font-weight: var(--font-weight-normal); color: $color(neutral-700);}"), + InlineStyle("$me { margin-left: $2; display: inline; font-size: var(--text-xs); font-weight: var(--font-weight-normal); color: $color(neutral-700);}"), For("show_master"), Text("Show Master Key"), ),