Fix radio button styles
This commit is contained in:
parent
9899223a41
commit
8c5d287ebe
2 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,7 @@ import { FormattedMessage } from "react-intl";
|
||||||
|
|
||||||
const styles = createStyles({
|
const styles = createStyles({
|
||||||
formControl: {
|
formControl: {
|
||||||
padding: "0 15px",
|
padding: 0,
|
||||||
width: "100%"
|
width: "100%"
|
||||||
},
|
},
|
||||||
formLabel: {
|
formLabel: {
|
||||||
|
|
|
@ -106,6 +106,9 @@ export default (colors: IThemeColors): Theme =>
|
||||||
MuiFormLabel: {
|
MuiFormLabel: {
|
||||||
filled: {
|
filled: {
|
||||||
color: [[colors.primary], "!important"] as any
|
color: [[colors.primary], "!important"] as any
|
||||||
|
},
|
||||||
|
focused: {
|
||||||
|
color: [[colors.font.gray], "!important"] as any
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
MuiIconButton: {
|
MuiIconButton: {
|
||||||
|
|
Loading…
Reference in a new issue