fix: SQL Lab tab content padding (#38561)

This commit is contained in:
Michael S. Molina
2026-03-10 11:44:31 -03:00
committed by GitHub
parent 0cfd760a36
commit bde48e563e
2 changed files with 3 additions and 1 deletions

View File

@@ -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%;
`;

View File

@@ -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;
}