feat: Quests page responsiveness and sidebar enhancements

This commit is contained in:
2026-03-04 03:22:22 +06:00
parent c35f328e30
commit 437c7a517f
37 changed files with 398 additions and 65 deletions

View File

@ -71,6 +71,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); }