mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix: SQL Lab tab content padding (#38561)
(cherry picked from commit bde48e563e)
This commit is contained in:
committed by
Michael S. Molina
parent
a9b24da0a2
commit
224a922341
@@ -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%;
|
||||
`;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user