This is an automated email from the ASF dual-hosted git repository. enzomartellucci pushed a commit to branch enxdev/fix/visual-regression-p7 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 6839005a914b8105ae052d37664ed0820866198c Author: Enzo Martellucci <[email protected]> AuthorDate: Thu Jul 17 17:27:54 2025 +0200 fix(ControlPanelsContainer): add padding to the bottom to show full content --- superset-frontend/src/explore/components/ControlPanelsContainer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx index 8435b957a6..09c6b0f3b4 100644 --- a/superset-frontend/src/explore/components/ControlPanelsContainer.tsx +++ b/superset-frontend/src/explore/components/ControlPanelsContainer.tsx @@ -145,6 +145,7 @@ const Styles = styled.div` #controlSections { height: 100%; overflow: visible; + padding-bottom: ${({ theme }) => theme.sizeUnit * 10}px; } .tab-content { overflow: auto;
