2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-01-10 21:28:01 +00:00

Fix user defined radius (#10327) (#10328)

- Observe correct radius values
- Closes https://github.com/inventree/InvenTree/issues/10322

(cherry picked from commit 5727999d4d)

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
github-actions[bot]
2025-09-16 10:25:28 +10:00
committed by GitHub
parent 0feb542899
commit 048ece4797
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;
}