diff --git a/src/App.scss b/src/App.scss index eff22b0..687677d 100644 --- a/src/App.scss +++ b/src/App.scss @@ -28,7 +28,7 @@ $catalog-width: 650px; $catalog-height: 480px; $inventory-width: 528px; -$inventory-height: 320px; +$inventory-height: 370px; $navigator-width: 420px; $navigator-height: 440px; diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 1ce2403..2e0960d 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -25,7 +25,7 @@ input[type=number] { -moz-appearance: textfield; } .rounded { - border-radius: 0.5rem!important; + border-radius: 0.5rem; } .btn-primary{ color: #fff; diff --git a/src/common/card/tabs/NitroCardTabsView.tsx b/src/common/card/tabs/NitroCardTabsView.tsx index 1a64a12..a365872 100644 --- a/src/common/card/tabs/NitroCardTabsView.tsx +++ b/src/common/card/tabs/NitroCardTabsView.tsx @@ -7,7 +7,7 @@ export const NitroCardTabsView: FC = props => const getClassNames = useMemo(() => { - const newClassNames: string[] = [ 'container-fluid', 'nitro-card-tabs', 'pt-1' ]; + const newClassNames: string[] = [ 'container-fluid', 'nitro-card-tabs', 'pt-1', 'position-relative' ]; if(classNames.length) newClassNames.push(...classNames); @@ -19,4 +19,4 @@ export const NitroCardTabsView: FC = props => { children } ); -} +} \ No newline at end of file