This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new a95e5c9 fix: layout flexiness (#10681)
a95e5c9 is described below
commit a95e5c9327738489fd9fb547134f7ff4ea8c37af
Author: Evan Rusackas <[email protected]>
AuthorDate: Wed Aug 26 09:49:58 2020 -0700
fix: layout flexiness (#10681)
---
superset-frontend/src/components/Menu/SubMenu.tsx | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/superset-frontend/src/components/Menu/SubMenu.tsx
b/superset-frontend/src/components/Menu/SubMenu.tsx
index f71efd4..7a67202 100644
--- a/superset-frontend/src/components/Menu/SubMenu.tsx
+++ b/superset-frontend/src/components/Menu/SubMenu.tsx
@@ -23,6 +23,11 @@ import Button, { OnClickHandler } from
'src/components/Button';
const StyledHeader = styled.header`
margin-top: -20px;
+ display: flex;
+ justify-content: space-between;
+ & > * {
+ flex-grow: 1;
+ }
.navbar-header .navbar-brand {
font-weight: ${({ theme }) => theme.typography.weights.bold};
}