fix: SQL Lab tab content padding (#38561)

(cherry picked from commit bde48e563e)
This commit is contained in:
Michael S. Molina
2026-03-10 11:44:31 -03:00
committed by Michael S. Molina
parent a9b24da0a2
commit 224a922341
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;
}