From e34f82a2ca067a307e55b1be00653234e56feaee Mon Sep 17 00:00:00 2001 From: Geido <60598000+geido@users.noreply.github.com> Date: Mon, 11 Apr 2022 16:45:52 +0300 Subject: [PATCH] Remove font-size hacky usage (#19611) --- 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`