Skip to content

Commit d57f6ad

Browse files
committed
WIP raido pointer
1 parent c42ed4b commit d57f6ad

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.label {
2+
background-color: red;
3+
}
4+
.radio {
5+
cursor: pointer;
6+
}

jsapp/js/theme/kobo/Radio.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { Radio } from '@mantine/core'
2+
import classes from './Radio.module.css'
3+
4+
export const RadioThemeKobo = Radio.extend({
5+
classNames: classes,
6+
})

jsapp/js/theme/kobo/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import { TableThemeKobo } from './Table'
1313
import { TagsInputThemeKobo } from './TagsInput'
1414
import { ThemeIconThemeKobo } from './ThemeIcon'
1515
import { TooltipThemeKobo } from './Tooltip'
16+
import {RadioThemeKobo} from './Radio'
1617

1718
export const themeKobo = createTheme({
1819
primaryColor: 'blue',
@@ -123,5 +124,6 @@ export const themeKobo = createTheme({
123124
TagsInput: TagsInputThemeKobo,
124125
ThemeIcon: ThemeIconThemeKobo,
125126
NumberInput: NumberInputThemeKobo,
127+
RadioInput: RadioThemeKobo,
126128
},
127129
})

0 commit comments

Comments
 (0)