From 4fdd72f30f94debfc3718c3881dd3aa3aaf79cb4 Mon Sep 17 00:00:00 2001 From: geido Date: Fri, 8 Apr 2022 10:38:20 +0000 Subject: [PATCH] Remove font-size hacky usage --- superset-frontend/src/components/ImportModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/ImportModal/index.tsx b/superset-frontend/src/components/ImportModal/index.tsx index da32756df1458..e8c29b94e9561 100644 --- a/superset-frontend/src/components/ImportModal/index.tsx +++ b/superset-frontend/src/components/ImportModal/index.tsx @@ -29,7 +29,7 @@ import { ImportResourceName } from 'src/views/CRUD/types'; const HelperMessage = styled.div` display: block; color: ${({ theme }) => theme.colors.grayscale.base}; - font-size: ${({ theme }) => theme.typography.sizes.s - 1}px; + font-size: ${({ theme }) => theme.typography.sizes.s}px; `; const StyledInputContainer = styled.div`