@punch-in/strapi-admin 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,7 @@ const Header = styled.div`
12
12
  height: ${props => props.theme.main.sizes.header.height};
13
13
 
14
14
  position: fixed;
15
- z-index: -10;
15
+ z-index: 1040;
16
16
  left: ${props => props.theme.main.sizes.leftMenu.width};
17
17
 
18
18
  box-shadow: 0 1px 2px 0 rgba(40, 42, 49, 0.16);
@@ -11,7 +11,10 @@ const NavTopRightWrapper = styled.div`
11
11
  justify-content: space-between;
12
12
  align-items: center;
13
13
  box-shadow: 0 6px 18px #002f5f52;
14
- z-index: 1;
14
+ /* Must outrank .adminPageRightWrapper (z-index: 5, see containers/Admin/Wrapper.js) and
15
+ the LeftMenu sidebar (z-index: 10) - otherwise the Logout dropdown menu that pops out
16
+ of this bar renders underneath the main content area and is invisible/unclickable. */
17
+ z-index: 15;
15
18
  `;
16
19
 
17
20
  export default NavTopRightWrapper;
package/package.json CHANGED
@@ -139,5 +139,5 @@
139
139
  "develop:ce": "STRAPI_DISABLE_EE=true webpack-dev-server --config webpack.config.dev.js",
140
140
  "test": "echo \"no tests yet\""
141
141
  },
142
- "version": "1.2.1"
142
+ "version": "1.2.2"
143
143
  }