You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2021/01/15 11:48:44 UTC

[superset] 08/08: Fix list filters vertical alignment (#12497)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/superset.git

commit a1f53fb645d1430b4970907c0f7ced096db38cb5
Author: Michael S. Molina <70...@users.noreply.github.com>
AuthorDate: Wed Jan 13 18:58:05 2021 -0300

    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 91554c3..4d10c65 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;
 `;