Skip to content

Commit eceb082

Browse files
committed
fix(protocol-designer): fix navbar z-index issue
fix navbar z-index issue close RQA-3641
1 parent 44a80fb commit eceb082

File tree

1 file changed

+1
-1
lines changed
  • protocol-designer/src/organisms/ProtocolNavBar

1 file changed

+1
-1
lines changed

protocol-designer/src/organisms/ProtocolNavBar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function ProtocolNavBar({
9696
}
9797

9898
const NavContainer = styled(Flex)<{ showShadow: boolean }>`
99-
z-index: 11;
99+
z-index: ${props => (props.showShadow === true ? 11 : 0)};
100100
padding: ${SPACING.spacing12};
101101
width: 100%;
102102
justify-content: ${JUSTIFY_SPACE_BETWEEN};

0 commit comments

Comments
 (0)