Fix configuration divider

This commit is contained in:
Krzysztof Bialoglowicz 2019-09-10 18:43:09 +02:00
parent ec7f2366cf
commit 7aa7cc87a6
2 changed files with 3 additions and 1 deletions

View file

@ -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",

View file

@ -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",