We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ff94e commit f719dcdCopy full SHA for f719dcd
__tests__/shared/components/Header/__snapshots__/index.jsx.snap
@@ -2,11 +2,7 @@
2
3
exports[`Default render 1`] = `
4
<div
5
- style={
6
- Object {
7
- "zIndex": 2,
8
- }
9
+ className="src-shared-components-Header-___style__nav-header-wrapper___2HtiH"
10
>
11
<TopNav
12
loggedIn={true}
src/shared/components/Header/index.jsx
@@ -5,6 +5,8 @@ import { config } from 'topcoder-react-utils';
import Logo from 'assets/images/tc-logo.svg';
import { tracking } from '../../actions';
+import './style.scss';
+
let TopNavRef;
let LoginNavRef;
@@ -69,7 +71,7 @@ const Header = ({
69
71
70
72
if (TopNavRef) {
73
return (
- <div style={{ zIndex: 2 }}>
74
+ <div styleName="nav-header-wrapper">
75
<TopNavRef
76
menu={headerMenu || config.HEADER_MENU}
77
rightMenu={(
0 commit comments