From 2d67d2f14e8143e2e1589d2e3cd9218fb06562ec Mon Sep 17 00:00:00 2001 From: smileydev <47900232+prosdev0107@users.noreply.github.com> Date: Thu, 17 Feb 2022 13:45:04 -0500 Subject: [PATCH] fix(delete-modal): Changed the color of the help text with grayScale.dark1 in DeleteModal (#18786) * fix(delete-modal): Changed the color of the help text with grayScale.dark1 in DeleteModal * Update superset-frontend/src/components/DeleteModal/index.tsx Co-authored-by: Evan Rusackas --- superset-frontend/src/components/DeleteModal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/DeleteModal/index.tsx b/superset-frontend/src/components/DeleteModal/index.tsx index f11390342ee50..97f6b469334c2 100644 --- a/superset-frontend/src/components/DeleteModal/index.tsx +++ b/superset-frontend/src/components/DeleteModal/index.tsx @@ -26,7 +26,7 @@ const StyledDiv = styled.div` padding-top: 8px; width: 50%; label { - color: ${({ theme }) => theme.colors.grayscale.light1}; + color: ${({ theme }) => theme.colors.grayscale.base}; text-transform: uppercase; } `;