diff --git a/src/components/InventoryModal.tsx b/src/components/InventoryModal.tsx index a87bf11..9ac80fe 100644 --- a/src/components/InventoryModal.tsx +++ b/src/components/InventoryModal.tsx @@ -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; }