From bb697616c0655ee31f2def152d1c30de349f01e3 Mon Sep 17 00:00:00 2001 From: jelveh Date: Fri, 12 Dec 2025 13:28:18 -0800 Subject: [PATCH] Refine signup form spacing and title styling --- src/gui/src/UI/UIWindowSignup.js | 14 +++++++------- src/gui/src/css/style.css | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/gui/src/UI/UIWindowSignup.js b/src/gui/src/UI/UIWindowSignup.js index d69d60ab..2e36b14c 100644 --- a/src/gui/src/UI/UIWindowSignup.js +++ b/src/gui/src/UI/UIWindowSignup.js @@ -35,7 +35,7 @@ function UIWindowSignup (options) { let h = ''; h += '
'; // logo - h += ``; + h += ``; // close button if ( !options.has_head && options.show_close_button !== false ) { @@ -43,7 +43,7 @@ function UIWindowSignup (options) { } // Form - h += '
'; + h += '
'; // title h += `

${i18n('create_free_account')}

`; @@ -57,12 +57,12 @@ function UIWindowSignup (options) { h += ``; h += '
'; // email - h += '
'; + h += '
'; h += ``; h += ``; h += '
'; // password - h += '
'; + h += '
'; h += ``; h += ``; // show/hide icon @@ -71,7 +71,7 @@ function UIWindowSignup (options) { `; h += '
'; // confirm password - h += '
'; + h += '
'; h += ``; h += ``; // show/hide icon @@ -99,7 +99,7 @@ function UIWindowSignup (options) { h += '
'; // login link // create account link - h += '
'; + h += '
'; h += ``; h += '
'; h += '
'; @@ -168,7 +168,7 @@ function UIWindowSignup (options) { 'flex-direction': 'column', 'justify-content': 'center', 'align-items': 'center', - padding: '30px 10px 10px 10px', + padding: '20px 10px 10px 10px', }, // Add custom CSS for CAPTCHA states custom_css: ` diff --git a/src/gui/src/css/style.css b/src/gui/src/css/style.css index 1c68d787..b2e90b16 100644 --- a/src/gui/src/css/style.css +++ b/src/gui/src/css/style.css @@ -2006,10 +2006,10 @@ label { text-align: center; margin-top: 0; padding-bottom: 15px; - font-size: 23px; - font-weight: 400; + font-size: 21px; + font-weight: 500; margin-bottom: 10px; - color: #657489; + color: #000000; text-shadow: 1px 1px #ffffff1c; }