From fd635c0dbc9585b3f299c7369b0e04954a029948 Mon Sep 17 00:00:00 2001 From: Jarian Cottingham Date: Sat, 21 Feb 2026 15:37:45 -0600 Subject: [PATCH] Update floating circle to appear at bottom right when tagged items exist --- renderer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/renderer.js b/renderer.js index 48c5814..b65f700 100644 --- a/renderer.js +++ b/renderer.js @@ -302,9 +302,9 @@ function updateTaggedCount() { taggedCircle.style.transform = 'translateY(100px)'; taggedCircle.style.bottom = '-100px'; } else { - // Move up to show count - taggedCircle.style.transform = 'translateY(-30px)'; - taggedCircle.style.bottom = '50px'; + // Move up to show count (appears at the same spot at bottom right) + taggedCircle.style.transform = 'translateY(0)'; + taggedCircle.style.bottom = '20px'; } } }