Files
Homarr/src/tools/styles.ts
2022-06-01 19:53:57 +02:00

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' },
},
};