Files
Homarr/src/tools/styles.ts

13 lines
286 B
TypeScript
Raw Normal View History

2022-06-01 19:53:57 +02:00
import { MantineProviderProps } from '@mantine/core';
export const styles: MantineProviderProps['styles'] = {
Checkbox: {
input: { cursor: 'pointer' },
label: { cursor: 'pointer' },
},
Switch: {
input: { cursor: 'pointer' },
label: { cursor: 'pointer' },
},
};