mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-16 18:26:20 +01:00
13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import { MantineProviderProps } from '@mantine/core';
|
|
|
|
export const styles: MantineProviderProps['styles'] = {
|
|
Checkbox: {
|
|
input: { cursor: 'pointer' },
|
|
label: { cursor: 'pointer' },
|
|
},
|
|
Switch: {
|
|
input: { cursor: 'pointer' },
|
|
label: { cursor: 'pointer' },
|
|
},
|
|
};
|