From ab7351f9bdda52c3e1c69a29f7748a4a1b58e0d9 Mon Sep 17 00:00:00 2001 From: Maciej Bodek Date: Tue, 31 Oct 2023 09:52:50 +0100 Subject: [PATCH] upload list: bg update --- .../src/scenes/Import/ImportCSVFiles/files-to-upload.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web-console/src/scenes/Import/ImportCSVFiles/files-to-upload.tsx b/packages/web-console/src/scenes/Import/ImportCSVFiles/files-to-upload.tsx index 29c6e1a37..67c4ecc41 100644 --- a/packages/web-console/src/scenes/Import/ImportCSVFiles/files-to-upload.tsx +++ b/packages/web-console/src/scenes/Import/ImportCSVFiles/files-to-upload.tsx @@ -35,7 +35,7 @@ const StyledTable = styled(Table)` } tbody td { - background: ${({ theme }) => theme.color.backgroundDarker}; + background: #242531; &:first-child { border-top-left-radius: ${({ theme }) => theme.borderRadius}; @@ -51,7 +51,7 @@ const StyledTable = styled(Table)` const EmptyState = styled(Box).attrs({ justifyContent: "center" })` width: 100%; - background: ${({ theme }) => theme.color.backgroundDarker}; + background: #242531; border-radius: ${({ theme }) => theme.borderRadius}; padding: 1rem; `