From c0831436129e2c2f86c256949effacb3412d4677 Mon Sep 17 00:00:00 2001
From: dyzulk <66510723+dyzulk@users.noreply.github.com>
Date: Mon, 12 Jan 2026 12:57:48 +0700
Subject: [PATCH] fix(ui): implement sticky footer and update docs
---
css/style.css | 7 +-
login.html | 240 +++++++++++++++++++++++++-------------------------
2 files changed, 127 insertions(+), 120 deletions(-)
diff --git a/css/style.css b/css/style.css
index 212ec50..1707fbe 100644
--- a/css/style.css
+++ b/css/style.css
@@ -136,6 +136,11 @@ a:hover {
flex-direction: column;
}
+.content-wrapper {
+ flex: 1; /* Pushes footer down */
+ width: 100%;
+}
+
.card {
background: var(--bg-secondary);
border: 1px solid var(--border);
@@ -449,7 +454,7 @@ textarea:-webkit-autofill:focus {
/* Footer */
footer {
text-align: center;
- margin-top: 6rem; /* Even more separation from buttons */
+ margin-top: auto; /* Sticky bottom logic */
padding-top: 2rem;
padding-bottom: 2rem;
color: var(--fg-tertiary);
diff --git a/login.html b/login.html
index 5797bab..21266c5 100644
--- a/login.html
+++ b/login.html
@@ -28,134 +28,136 @@
-
-
-