Skip to content

Fix for Issue #4294 Dropdown hidden behind on profile settings page #4892

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Default render 1`] = `
<div>
<div
style={
Object {
"zIndex": 2,
}
}
>
<TopNav
loggedIn={true}
logo={
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/Header/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const Header = ({

if (TopNavRef) {
return (
<div>
<div style={{ zIndex: 2 }}>
<TopNavRef
menu={headerMenu || config.HEADER_MENU}
rightMenu={(
Expand Down
1 change: 1 addition & 0 deletions src/shared/components/TopcoderFooter/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
font-weight: 400;
line-height: 21px;
position: relative;
z-index: 0;

@include xs-to-sm {
padding: 30px 30px 21px 30px;
Expand Down
2 changes: 1 addition & 1 deletion src/shared/routes/Topcoder/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
display: flex;
flex: 1 0 auto;
position: relative;
z-index: 0;
z-index: 1;
}
}