2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-12-18 18:28:18 +00:00

Fix user defined radius (#10327)

- Observe correct radius values
- Closes https://github.com/inventree/InvenTree/issues/10322
This commit is contained in:
Oliver
2025-09-16 10:20:23 +10:00
committed by GitHub
parent bb40b92896
commit 5727999d4d
3 changed files with 14 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
import type { MantineSize } from '@mantine/core';
import type { MantineRadius, MantineSize } from '@mantine/core';
export type UiSizeType = MantineSize | string | number;
@@ -6,7 +6,7 @@ export interface UserTheme {
primaryColor: string;
whiteColor: string;
blackColor: string;
radius: UiSizeType;
radius: MantineRadius;
loader: string;
}