Update floating circle to appear at bottom right when tagged items exist

This commit is contained in:
Jarian Cottingham 2026-02-21 15:37:45 -06:00
parent f744e9b90b
commit de136c7d83

View File

@ -302,9 +302,9 @@ function updateTaggedCount() {
taggedCircle.style.transform = 'translateY(100px)'; taggedCircle.style.transform = 'translateY(100px)';
taggedCircle.style.bottom = '-100px'; taggedCircle.style.bottom = '-100px';
} else { } else {
// Move up to show count // Move up to show count (appears at the same spot at bottom right)
taggedCircle.style.transform = 'translateY(-30px)'; taggedCircle.style.transform = 'translateY(0)';
taggedCircle.style.bottom = '50px'; taggedCircle.style.bottom = '20px';
} }
} }
} }