diff --git a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx index 510228596d7..7c33304890a 100644 --- a/superset-frontend/src/SqlLab/components/ResultSet/index.tsx +++ b/superset-frontend/src/SqlLab/components/ResultSet/index.tsx @@ -118,7 +118,7 @@ export interface ResultSetProps { const ResultContainer = styled.div` display: flex; flex-direction: column; - row-gap: ${({ theme }) => theme.sizeUnit * 2}px; + row-gap: ${({ theme }) => theme.sizeUnit * 3}px; height: 100%; `; diff --git a/superset-frontend/src/SqlLab/components/SouthPane/index.tsx b/superset-frontend/src/SqlLab/components/SouthPane/index.tsx index 5ee5b172f6d..114a2345a2f 100644 --- a/superset-frontend/src/SqlLab/components/SouthPane/index.tsx +++ b/superset-frontend/src/SqlLab/components/SouthPane/index.tsx @@ -63,6 +63,7 @@ const TABS_KEYS = { const StyledPane = styled.div` width: 100%; height: 100%; + .ant-tabs .ant-tabs-content-holder { overflow: visible; } @@ -79,6 +80,7 @@ const StyledPane = styled.div` ${({ theme }) => theme.sizeUnit * 2}px; } .ant-tabs-tabpane { + padding-top: ${({ theme }) => theme.sizeUnit * 3}px; .scrollable { overflow-y: auto; }