Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const TitleArea = styled.div`
justify-content: space-between;
margin: 0;
padding: 0 ${theme.sizeUnit * 2}px ${theme.sizeUnit * 2}px;
padding-bottom: 0; /* Works with other changes in PR https://github.com/apache/superset/pull/38646 to reduces space between filter header and 1st filter */

& > span {
font-size: ${theme.fontSizeLG}px;
Expand All @@ -56,9 +57,8 @@ const HeaderButton = styled(Button)`

const Wrapper = styled.div`
${({ theme }) => `
padding: ${theme.sizeUnit * 3}px ${theme.sizeUnit * 2}px ${
theme.sizeUnit
}px;
padding: ${theme.sizeUnit * 3}px ${theme.sizeUnit * 2}px;
padding-bottom: 0; /* Works with other changes in PR https://github.com/apache/superset/pull/38646 to reduces space between filter header and 1st filter */
`}
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ const FilterControlsWrapper = styled.div`
flex-direction: column;
gap: ${theme.sizeUnit * 2}px;
padding: ${theme.sizeUnit * 4}px;
padding-top: 0; /* Works with other changes in PR https://github.com/apache/superset/pull/38646 to reduces space between filter header and 1st filter */
// 108px padding to make room for buttons with position: absolute
padding-bottom: ${theme.sizeUnit * 27}px;
`}
Expand Down
Loading