Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8f40eb0

Browse files
committedMar 19, 2020
style: set global color on body
1 parent aab2328 commit 8f40eb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎frontend/src/styles/global.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export const GlobalStyle = createGlobalStyle`
2828
}
2929
3030
body {
31-
background: ${({ theme: { colors } }) => colors.muted}
31+
background: ${({ theme: { colors } }) => colors.muted};
32+
color:${({ theme: { colors } }) => colors.text};
3233
}
3334
3435
*::-webkit-scrollbar {

0 commit comments

Comments
 (0)
Please sign in to comment.