We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb57e2c commit a47c6bfCopy full SHA for a47c6bf
src/components/molecules/Menu/index.tsx
@@ -1,3 +1,4 @@
1
+import { css } from 'glamor';
2
import glamorous from 'glamorous';
3
import { red, white } from '../../theme/semantic';
4
import { Container } from 'semantic-ui-react';
@@ -22,13 +23,15 @@ const MenuContainer = glamorous.div({
22
23
height: '57px'
24
});
25
26
+const containerStyles = css({ overflow: 'hidden !important' });
27
+
28
export type Props = Menu & {
29
nextLink?: React.ComponentClass<LinkState>;
30
};
31
32
const menu = (props: Props) =>
33
<MenuContainer>
- <Container>
34
+ <Container { ...containerStyles }>
35
<Logo />
36
<DesktopMenu { ...props } />
37
<MobileMenu { ...props } />
0 commit comments