fix: equalize info and back-to-top button sizes to 50px

This commit is contained in:
juanatsap
2025-11-12 16:08:37 +00:00
parent 25c69a1356
commit e1d59ee701
+3 -3
View File
@@ -2578,8 +2578,8 @@ html {
position: fixed; position: fixed;
bottom: 2rem; bottom: 2rem;
right: 2rem; right: 2rem;
width: 35px; /* Smaller default size */ width: 50px;
height: 35px; height: 50px;
background: var(--black-bar); background: var(--black-bar);
color: white; color: white;
border: none; border: none;
@@ -2596,7 +2596,7 @@ html {
.back-to-top:hover { .back-to-top:hover {
opacity: 1; 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); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
background: #3a3a3a; background: #3a3a3a;
} }