From 53fc9f514823f17e9a4a0380aae12b8263223f6e Mon Sep 17 00:00:00 2001 From: Komediruzecki Date: Sat, 12 Jun 2021 10:19:53 +0200 Subject: [PATCH] Fix default table background color missing in globla style --- src/shared/components/atoms/GlobalStyle.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/shared/components/atoms/GlobalStyle.tsx b/src/shared/components/atoms/GlobalStyle.tsx index 1cd1359e3d..8360072806 100644 --- a/src/shared/components/atoms/GlobalStyle.tsx +++ b/src/shared/components/atoms/GlobalStyle.tsx @@ -43,6 +43,11 @@ button { transition: 100ms color; } +th, +td { + background-color: ${theme.colors.background.primary}; +} + /* total width */ scrollbar-width: 8px; scrollbar-height: 8px; @@ -113,6 +118,11 @@ export default createGlobalStyle` font-size: ${({ theme }) => theme.sizes.fonts.md}px; } + th, + td { + background-color: ${({ theme }) => theme.colors.background.primary}; + } + .icon { transition: 100ms color; }