rusackas edited a comment on pull request #12497:
URL: https://github.com/apache/superset/pull/12497#issuecomment-759673730


   @michael-s-molina I see another route to fixing this that may make sense. 
   
   In `Base.ts` add `align-items` to `FilterContainer`, i.e.:
   ```
   export const FilterContainer = styled.div`
     display: inline-flex;
     margin-right: 2em;
     font-size: ${({ theme }) => theme.typography.sizes.s}px;
     align-items: center;
   `;
   ```
   ... and in `FilterTitle` remove the `line-height`, i.e.:
   ```
   export const FilterTitle = styled.label`
     font-weight: bold;
     margin: 0 0.4em 0 0;
   `;
   ```
   then you should come out clean without having to nudge any pixels around.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to