feat: Quests page responsiveness and sidebar enhancements

This commit is contained in:
2026-03-04 03:22:22 +06:00
parent f154ebf033
commit e75233929a
38 changed files with 455 additions and 98 deletions

View File

@ -73,6 +73,15 @@ const STYLES = `
display:flex; flex-direction:column; gap:1.5rem;
}
/* Desktop: wider centered layout matching rewards page */
@media (min-width: 900px) {
.ls-inner {
max-width: var(--content-max);
padding: 2rem 2rem 6rem;
}
}
@keyframes lsPopIn {
from { opacity:0; transform:scale(0.92) translateY(12px); }
to { opacity:1; transform:scale(1) translateY(0); }