Fix configuration divider
This commit is contained in:
parent
ec7f2366cf
commit
7aa7cc87a6
2 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@ const dark: IThemeColors = {
|
||||||
checkbox: {
|
checkbox: {
|
||||||
default: "#FFFFFF"
|
default: "#FFFFFF"
|
||||||
},
|
},
|
||||||
|
divider: "#252728",
|
||||||
error: "#C22D74",
|
error: "#C22D74",
|
||||||
font: {
|
font: {
|
||||||
button: "#202124",
|
button: "#202124",
|
||||||
|
@ -49,6 +50,7 @@ const light: IThemeColors = {
|
||||||
checkbox: {
|
checkbox: {
|
||||||
default: "#616161"
|
default: "#616161"
|
||||||
},
|
},
|
||||||
|
divider: "#EAEAEA",
|
||||||
error: "#C22D74",
|
error: "#C22D74",
|
||||||
font: {
|
font: {
|
||||||
button: "#FFFFFF",
|
button: "#FFFFFF",
|
||||||
|
|
|
@ -56,7 +56,7 @@ const styles = (theme: Theme) =>
|
||||||
[theme.breakpoints.down("md")]: {
|
[theme.breakpoints.down("md")]: {
|
||||||
gridTemplateColumns: "1fr"
|
gridTemplateColumns: "1fr"
|
||||||
},
|
},
|
||||||
borderTop: `solid 1px #eaeaea`,
|
borderTop: `solid 1px ${theme.palette.divider}`,
|
||||||
display: "grid",
|
display: "grid",
|
||||||
gridColumnGap: theme.spacing.unit * 4 + "px",
|
gridColumnGap: theme.spacing.unit * 4 + "px",
|
||||||
gridTemplateColumns: "1fr 3fr",
|
gridTemplateColumns: "1fr 3fr",
|
||||||
|
|
Loading…
Reference in a new issue