Closes #922 - Dark mode fixes

This commit is contained in:
Tom Moor
2019-04-06 17:07:14 -07:00
parent 1fc5578349
commit ea3e81acc4
2 changed files with 2 additions and 2 deletions

View File

@@ -145,7 +145,7 @@ const More = styled.div`
border-radius: 12px;
background: ${props => props.theme.slate};
color: ${props => props.theme.text};
border: 2px solid #fff;
border: 2px solid ${props => props.theme.background};
text-align: center;
line-height: 20px;
font-size: 11px;

View File

@@ -138,7 +138,7 @@ export const dark = {
codeBackground: colors.almostBlack,
codeBorder: colors.black50,
embedBorder: colors.black50,
horizontalRule: colors.almostWhite,
horizontalRule: darken(0.2, colors.slate),
};
export default light;