From 1bcaa73c5c87256abbb241098d877db43e710522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Mon, 6 May 2024 12:36:02 +0800 Subject: [PATCH] fix: webui style --- static/login.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/static/login.html b/static/login.html index 37cc537a..3d4a571c 100644 --- a/static/login.html +++ b/static/login.html @@ -50,6 +50,14 @@ gap: 15px; } + .qrcode { + display: flex; + justify-content: center; + align-items: center; + gap: 15px; + text-align: center; + } + button { width: 100%; padding: 10px; @@ -112,6 +120,23 @@ .quick-login-option:hover { background-color: #e6f0ff; } + + #quick-login-select { + width: 100%; + padding: 10px; + font-size: 16px; + background-color: #fff; + border: 1px solid #ccc; + border-radius: 5px; + cursor: pointer; + outline: none; + transition: all 0.3s; + } + + #quick-login-select option { + background-color: #fff; + color: #333; + }