Style updates

This commit is contained in:
Bill 2021-04-28 01:41:26 -04:00
parent 65d6500948
commit bfeff17eff
3 changed files with 5 additions and 5 deletions

View File

@ -364,7 +364,7 @@ $container-padding-x: $grid-gutter-width / 2 !default;
// Define common padding and border radius sizes and more. // Define common padding and border radius sizes and more.
// scss-docs-start border-variables // scss-docs-start border-variables
$border-width: 1px !default; $border-width: 1.5px !default;
$border-widths: ( $border-widths: (
1: 1px, 1: 1px,
2: 2px, 2: 2px,
@ -934,7 +934,7 @@ $nav-link-transition: color .15s ease-in-out, background-color .15
$nav-link-disabled-color: $gray-600 !default; $nav-link-disabled-color: $gray-600 !default;
$nav-tabs-border-color: #283F5D !default; $nav-tabs-border-color: #283F5D !default;
$nav-tabs-border-width: 1px !default; $nav-tabs-border-width: $border-width !default;
$nav-tabs-border-radius: $border-radius !default; $nav-tabs-border-radius: $border-radius !default;
$nav-tabs-link-bg: $muted !default; $nav-tabs-link-bg: $muted !default;
$nav-tabs-link-hover-bg: $light !default; $nav-tabs-link-hover-bg: $light !default;

View File

@ -105,7 +105,7 @@ export const InventoryView: FC<InventoryViewProps> = props =>
</li>; </li>;
}) } }) }
</ul> </ul>
<div className="bg-light rounded-bottom border border-top-0 px-3 py-2 h-100 overflow-hidden"> <div className="bg-light rounded-bottom border border-top-0 px-3 py-2 h-100 shadow overflow-hidden">
{ (currentTab === InventoryTabs.FURNITURE ) && <InventoryFurnitureView { (currentTab === InventoryTabs.FURNITURE ) && <InventoryFurnitureView
needsFurniUpdate={ needsFurniUpdate } needsFurniUpdate={ needsFurniUpdate }
setNeedsFurniUpdate={ setNeedsFurniUpdate } setNeedsFurniUpdate={ setNeedsFurniUpdate }

View File

@ -1,6 +1,6 @@
.item-container { .item-container {
height: 220px; height: 216px;
max-height: 220px; max-height: 216px;
overflow-y: auto; overflow-y: auto;
} }