More style updates

This commit is contained in:
Bill 2021-04-28 13:57:09 -04:00
parent cf372b117c
commit 315c32bcb5
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
.item-container { .item-container {
height: 208px; height: 192px;
max-height: 208px; max-height: 192px;
overflow-y: auto; overflow-y: auto;
} }

View File

@ -7,7 +7,7 @@ export const InventoryFurnitureResultsView: FC<InventoryFurnitureResultsViewProp
const { groupItems = [] } = props; const { groupItems = [] } = props;
return ( return (
<div className="row row-cols-5 g-0 item-container"> <div className="row row-cols-5 align-content-start g-0 item-container">
{ groupItems && groupItems.length && groupItems.map((item, index) => { groupItems && groupItems.length && groupItems.map((item, index) =>
{ {
return <InventoryFurnitureItemView key={ index } groupItem={ item } /> return <InventoryFurnitureItemView key={ index } groupItem={ item } />