diff --git a/app/styles/game-menu/inventory-view.sass b/app/styles/game-menu/inventory-view.sass index 70615c5ea..4f8eeb27e 100644 --- a/app/styles/game-menu/inventory-view.sass +++ b/app/styles/game-menu/inventory-view.sass @@ -34,7 +34,7 @@ $stashWidth: $totalWidth - $equippedWidth - $stashMargin bottom: 0 //bottom: $selectedAreaHeight + 10 right: 0 - overflow: scroll + overflow: hidden .item-slot-row //background-color: rgba(35, 112, 124, 0.5) @@ -128,7 +128,7 @@ $stashWidth: $totalWidth - $equippedWidth - $stashMargin right: 0 top: 0 bottom: 0 - overflow: scroll + overflow-y: scroll border: 2px solid #ccc padding: 4px background-color: white diff --git a/app/templates/game-menu/inventory-view.jade b/app/templates/game-menu/inventory-view.jade index 71ff11d21..bda583512 100644 --- a/app/templates/game-menu/inventory-view.jade +++ b/app/templates/game-menu/inventory-view.jade @@ -45,6 +45,7 @@ #available-equipment h4#stash-description - for item in items - .list-group-item(class=item.classes, data-item-id=item.get('original')) + ul.list-group + for item in items + li.list-group-item(class=item.classes, data-item-id=item.get('original'))