From 75a329abb35c007c54ac95ceb0c1f5324546c73c Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Wed, 13 Jan 2021 18:58:05 -0300 Subject: [PATCH] Fix list filters vertical alignment (#12497) --- superset-frontend/src/components/ListView/Filters/Base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/ListView/Filters/Base.ts b/superset-frontend/src/components/ListView/Filters/Base.ts index 91554c38aba4..4d10c6547563 100644 --- a/superset-frontend/src/components/ListView/Filters/Base.ts +++ b/superset-frontend/src/components/ListView/Filters/Base.ts @@ -28,10 +28,10 @@ export const FilterContainer = styled.div` display: inline-flex; margin-right: 2em; font-size: ${({ theme }) => theme.typography.sizes.s}px; + align-items: center; `; export const FilterTitle = styled.label` font-weight: bold; - line-height: 27px; margin: 0 0.4em 0 0; `;