Fix: Navigator Alignment

This commit is contained in:
duckietm 2024-03-15 08:32:05 +01:00
parent 231dfe503d
commit fd9006f255
3 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ $catalog-width: 650px;
$catalog-height: 480px; $catalog-height: 480px;
$inventory-width: 528px; $inventory-width: 528px;
$inventory-height: 320px; $inventory-height: 370px;
$navigator-width: 420px; $navigator-width: 420px;
$navigator-height: 440px; $navigator-height: 440px;

View File

@ -25,7 +25,7 @@ input[type=number] {
-moz-appearance: textfield; -moz-appearance: textfield;
} }
.rounded { .rounded {
border-radius: 0.5rem!important; border-radius: 0.5rem;
} }
.btn-primary{ .btn-primary{
color: #fff; color: #fff;

View File

@ -7,7 +7,7 @@ export const NitroCardTabsView: FC<FlexProps> = props =>
const getClassNames = useMemo(() => 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); if(classNames.length) newClassNames.push(...classNames);
@ -19,4 +19,4 @@ export const NitroCardTabsView: FC<FlexProps> = props =>
{ children } { children }
</Flex> </Flex>
); );
} }