This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 0.38 in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
commit f8bdf5e02a3d86f18a7a5d68c52a720666ee6bbb Author: ʈᵃᵢ <[email protected]> AuthorDate: Wed Aug 26 14:00:20 2020 -0700 fix: SubMenu css (#10682) --- superset-frontend/src/components/Menu/SubMenu.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/superset-frontend/src/components/Menu/SubMenu.tsx b/superset-frontend/src/components/Menu/SubMenu.tsx index 7a67202..79c3f46 100644 --- a/superset-frontend/src/components/Menu/SubMenu.tsx +++ b/superset-frontend/src/components/Menu/SubMenu.tsx @@ -22,12 +22,8 @@ import { Nav, Navbar, MenuItem } from 'react-bootstrap'; import Button, { OnClickHandler } from 'src/components/Button'; const StyledHeader = styled.header` - margin-top: -20px; - display: flex; - justify-content: space-between; - & > * { - flex-grow: 1; - } + position: relative; + top: -20px; .navbar-header .navbar-brand { font-weight: ${({ theme }) => theme.typography.weights.bold}; }
