From e1d59ee701817ae89df50d8e1bbaaef25b1090ad Mon Sep 17 00:00:00 2001 From: juanatsap Date: Wed, 12 Nov 2025 16:08:37 +0000 Subject: [PATCH] fix: equalize info and back-to-top button sizes to 50px --- static/css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index b71f745..72f4be5 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -2578,8 +2578,8 @@ html { position: fixed; bottom: 2rem; right: 2rem; - width: 35px; /* Smaller default size */ - height: 35px; + width: 50px; + height: 50px; background: var(--black-bar); color: white; border: none; @@ -2596,7 +2596,7 @@ html { .back-to-top:hover { opacity: 1; - transform: translateY(-3px) scale(1.43); /* Grow to ~50px on hover */ + transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4); background: #3a3a3a; }