diff --git a/dist/index.html b/dist/index.html index eeca5fa..edb1a7e 100644 --- a/dist/index.html +++ b/dist/index.html @@ -59,6 +59,19 @@ .alt-card { background: white; padding: 20px; border-radius: 8px; max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto; } .alt-item { padding: 10px; border-bottom: 1px solid #eee; } .alt-item:last-child { border-bottom: none; } + + /* Mobile Drag Selection */ + .drag-selecting { animation: ripple 0.3s ease-out; background-color: rgba(99, 5, 96, 0.1); } + @keyframes ripple { + 0% { transform: scale(0.95); opacity: 0.5; } + 50% { transform: scale(1.02); opacity: 0.8; } + 100% { transform: scale(1); opacity: 1; } + } + .result-item { user-select: none; -webkit-user-select: none; } /* Disable text selection for drag */ + + /* Sticky Headers */ + header { position: sticky; top: 0; } + .nav-tabs { position: sticky; top: 55px; background: #f5f5f5; padding-top: 10px; margin-top: -10px; } /* Adjust top based on header height ~55px */