diff --git a/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx b/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx index d220c94db89..bc3c522c401 100644 --- a/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx +++ b/superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx @@ -52,8 +52,11 @@ const BackgroundStyleOption = styled.div` } /* Create the transparent rect icon */ &.background--transparent:before { - background-image: - linear-gradient(45deg, ${theme.colorTextLabel} 25%, transparent 25%), + background-image: linear-gradient( + 45deg, + ${theme.colorTextLabel} 25%, + transparent 25% + ), linear-gradient(-45deg, ${theme.colorTextLabel} 25%, transparent 25%), linear-gradient(45deg, transparent 75%, ${theme.colorTextLabel} 75%), linear-gradient(-45deg, transparent 75%, ${theme.colorTextLabel} 75%);