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: {
|
||||
default: "#FFFFFF"
|
||||
},
|
||||
divider: "#252728",
|
||||
error: "#C22D74",
|
||||
font: {
|
||||
button: "#202124",
|
||||
|
@ -49,6 +50,7 @@ const light: IThemeColors = {
|
|||
checkbox: {
|
||||
default: "#616161"
|
||||
},
|
||||
divider: "#EAEAEA",
|
||||
error: "#C22D74",
|
||||
font: {
|
||||
button: "#FFFFFF",
|
||||
|
|
|
@ -56,7 +56,7 @@ const styles = (theme: Theme) =>
|
|||
[theme.breakpoints.down("md")]: {
|
||||
gridTemplateColumns: "1fr"
|
||||
},
|
||||
borderTop: `solid 1px #eaeaea`,
|
||||
borderTop: `solid 1px ${theme.palette.divider}`,
|
||||
display: "grid",
|
||||
gridColumnGap: theme.spacing.unit * 4 + "px",
|
||||
gridTemplateColumns: "1fr 3fr",
|
||||
|
|
Loading…
Reference in a new issue