From 9797dd2c9893fd75e2c36fbe60390f306b1ca72a Mon Sep 17 00:00:00 2001 From: ddrayko Date: Thu, 16 Jul 2026 12:44:06 +0200 Subject: [PATCH 1/4] Make Discord card smaller (36px) with transparent background --- public/css/style.css | 14 +++++++------- public/js/app.js | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index 0f7827c..c120e5b 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -649,11 +649,11 @@ cap-widget { display: flex; align-items: center; justify-content: center; - width: 52px; - height: 52px; - background: var(--bg-primary); - border: 1px solid var(--border); - border-radius: 12px; + width: 36px; + height: 36px; + background: transparent; + border: 1px solid rgba(255,255,255,0.08); + border-radius: 10px; text-decoration: none; transition: all var(--transition); cursor: pointer; @@ -661,8 +661,8 @@ cap-widget { .discord-login-card:hover { border-color: #5865F2; - background: rgba(88, 101, 242, 0.1); - transform: translateX(-50%) scale(1.05); + background: rgba(88, 101, 242, 0.08); + transform: translateX(-50%) scale(1.1); } .auth-error { diff --git a/public/js/app.js b/public/js/app.js index b80b420..8fc5e0d 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -666,7 +666,7 @@ function renderLoginPage() { - + From 7ee3734311131f84a2deef8d2bd3f33d23d05fe1 Mon Sep 17 00:00:00 2001 From: ddrayko Date: Thu, 16 Jul 2026 12:44:43 +0200 Subject: [PATCH 2/4] Increase Discord card to 44px --- public/css/style.css | 4 ++-- public/js/app.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index c120e5b..cac12c4 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -649,8 +649,8 @@ cap-widget { display: flex; align-items: center; justify-content: center; - width: 36px; - height: 36px; + width: 44px; + height: 44px; background: transparent; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; diff --git a/public/js/app.js b/public/js/app.js index 8fc5e0d..cd73809 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -666,7 +666,7 @@ function renderLoginPage() { From f0dc5111644a1980452826720c49ffa516f1805c Mon Sep 17 00:00:00 2001 From: ddrayko Date: Thu, 16 Jul 2026 12:45:28 +0200 Subject: [PATCH 3/4] Bump version to 1.1.0 --- package.json | 2 +- public/js/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 81b96bb..219bed2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zerohost-dashboard", - "version": "1.0.9", + "version": "1.1.0", "private": true, "type": "module", "scripts": { diff --git a/public/js/app.js b/public/js/app.js index cd73809..cdaaf81 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1507,7 +1507,7 @@ async function renderDashboard() {
-
v1.0.9
+
v1.1.0
From d18596444051167eded2059f36ef50eb6673411e Mon Sep 17 00:00:00 2001 From: ddrayko Date: Thu, 16 Jul 2026 12:46:10 +0200 Subject: [PATCH 4/4] Show Discord card only on login choices screen, hide when email form is shown --- public/js/app.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/js/app.js b/public/js/app.js index cdaaf81..50897ef 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -665,7 +665,7 @@ function renderLoginPage() { -