From a132ca7fd88ada81ed07e5f63ce9642b830dc5ac Mon Sep 17 00:00:00 2001 From: partisan Date: Fri, 4 Jul 2025 21:43:08 +0200 Subject: [PATCH] Fixed image resolution indicator being aligned incorrectly --- static/css/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 6683a92..0696b41 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -118,6 +118,7 @@ html { } .image { + position: relative; flex-grow: 1; padding: .5rem .5rem 3rem .5rem; margin: .25rem; @@ -179,8 +180,8 @@ html { .image .resolution { position: absolute; opacity: 0; - top: calc(100% - 25px); - left: 5px; + bottom: 51px; + right: 12px; font-size: 12px; background-color: var(--view-image-color); color: var(--fg);