diff --git a/index.html b/index.html index da477d5..a32760f 100644 --- a/index.html +++ b/index.html @@ -109,6 +109,17 @@ window.WalletManager = WalletManager; ::-webkit-scrollbar-track { background: #05070B; } ::-webkit-scrollbar-thumb { background: #1F2937; border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: #374151; } + + /* Draggable pills */ + #wallet-pills { display: flex; align-items: center; gap: 6px; } + #wallet-pills .pill-btn { user-select: none; position: relative; } + #wallet-pills .pill-btn.dragging { opacity: 0.3; transform: scale(0.95); } + #wallet-pills .pill-btn.pill-dragging { opacity: 0.3; transform: scale(0.95); } + .drag-insert-line { + width: 3px; min-height: 32px; background: #FF7A00; + border-radius: 2px; flex-shrink: 0; box-shadow: 0 0 6px #FF7A00; + position: absolute; left: -3px; top: 0; + }