Browse Source

fix(admin-ui): Correctly display overlays inside modals

Increased the z-index of the CDK overlay container, otherwise dropdowns are hidden behind the open modal.
Michael Bromley 5 years ago
parent
commit
ee9c8caebf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/admin-ui/src/lib/static/styles/theme/_theme.scss

+ 1 - 1
packages/admin-ui/src/lib/static/styles/theme/_theme.scss

@@ -70,5 +70,5 @@ table tr .dropdown-menu button.dropdown-item {
 }
 }
 
 
 .cdk-overlay-container {
 .cdk-overlay-container {
-    z-index: 1040;
+    z-index: 1060;
 }
 }