fix: responsive inventory

This commit is contained in:
2026-03-04 03:34:31 +06:00
parent a08476ec53
commit bd3974e2f0

View File

@ -39,6 +39,12 @@ const STYLES = `
animation: invSlideUp 0.38s cubic-bezier(0.34,1.56,0.64,1) both;
position: relative;
}
@media (min-width: 1024px) {
.inv-sheet {
max-width: 1000px;
}
}
@keyframes invSlideUp {
from { transform: translateY(100%); opacity:0; }
to { transform: translateY(0); opacity:1; }