@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.
|
@@ -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:
|
|
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