Fix single select styles
This commit is contained in:
parent
86a311a024
commit
7fb5ecbf49
2 changed files with 9 additions and 2 deletions
|
@ -11,7 +11,10 @@ import { FormattedMessage } from "react-intl";
|
|||
|
||||
const styles = createStyles({
|
||||
formControl: {
|
||||
width: "100%"
|
||||
width: "100%",
|
||||
"& label": {
|
||||
top: "-3px"
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -136,6 +136,7 @@ export default (colors: IThemeColors): Theme =>
|
|||
},
|
||||
MuiInputBase: {
|
||||
input: {
|
||||
zIndex: 1,
|
||||
"&::placeholder": {
|
||||
color: colors.font.gray,
|
||||
opacity: "1 !important" as any
|
||||
|
@ -274,7 +275,10 @@ export default (colors: IThemeColors): Theme =>
|
|||
},
|
||||
MuiSelect: {
|
||||
outlined: {
|
||||
padding: ["15px 12px 17px", "!important"] as any
|
||||
padding: ["20px 12px 8px 12px", "!important"] as any
|
||||
},
|
||||
disabled: {
|
||||
color: colors.input.disabledText
|
||||
}
|
||||
},
|
||||
MuiSnackbarContent: {
|
||||
|
|
Loading…
Reference in a new issue