diff --git a/index.html b/index.html
index 0eb1d84..05e9f3c 100644
--- a/index.html
+++ b/index.html
@@ -467,12 +467,12 @@
const apply = () => {
if (window.matchMedia('(min-width: 640px)').matches) {
- // Desktop: offset from left navbar
+ // Desktop: top-right to avoid overlapping "Searched addresses" (which is left-side)
Object.assign(panel.style, {
- left: 'calc(10rem + 1rem)',
- bottom: '1rem',
- top: 'auto',
- right: '1rem', // optional, lets long toasts wrap before content edge
+ left: 'auto',
+ bottom: 'auto',
+ top: '1rem',
+ right: '1rem',
zIndex: '1000'
});
} else {
@@ -494,6 +494,8 @@