mirror of
https://github.com/apache/superset.git
synced 2026-04-24 10:35:01 +00:00
fix(Pivot Table v2): resolved full width issue (#23393)
This commit is contained in:
@@ -53,7 +53,7 @@ const Styles = styled.div<PivotTableStylesProps>`
|
||||
|
||||
const PivotTableWrapper = styled.div`
|
||||
height: 100%;
|
||||
max-width: fit-content;
|
||||
max-width: inherit;
|
||||
overflow: auto;
|
||||
`;
|
||||
|
||||
|
||||
@@ -23,6 +23,7 @@ export const Styles = styled.div`
|
||||
${({ theme, isDashboardEditMode }) => css`
|
||||
table.pvtTable {
|
||||
position: ${isDashboardEditMode ? 'inherit' : 'relative'};
|
||||
width: calc(100% - ${theme.gridUnit}px);
|
||||
font-size: ${theme.typography.sizes.s}px;
|
||||
text-align: left;
|
||||
margin: ${theme.gridUnit}px;
|
||||
|
||||
Reference in New Issue
Block a user