Skip to content

Commit

Permalink
fix z-index on new feature dialog to prevent wrapped features from cl…
Browse files Browse the repository at this point in the history
…ipping over UI
  • Loading branch information
LMNTL authored and noliveleger committed Feb 16, 2024
1 parent 139c98c commit e0bf5db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jsapp/js/components/newFeatureDialog.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

.root {
position: relative;
z-index: 1100; // 1 index lower than a modal
}

.wrapper {
Expand All @@ -17,6 +16,7 @@
padding: sizes.$x12;
color: colors.$kobo-white;
background: colors.$kobo-dark-blue;
z-index: 1100; // 1 index lower than a modal
}

.dialog::before {
Expand All @@ -28,7 +28,7 @@
position: absolute;
pointer-events: none;
border-width: sizes.$x6;
margin-left: calc(sizes.$x6 * -1);
margin-left: -(sizes.$x6);
bottom: 100%;
border-bottom-color: colors.$kobo-dark-blue;
}
Expand Down

0 comments on commit e0bf5db

Please sign in to comment.