Skip to content

Commit

Permalink
fix detailed result toolbar overlap with header dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Aug 16, 2023
1 parent 0eb187a commit 3aed914
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/scss/core/components/_detailed_results.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
margin-right: calc(-1 * var(--container-padding));
display: flex;
transition: background-color .15s ease-in-out;
z-index: $header-z-index;
// This needs to be less than $header-z-index otherwise the toolbar overlaps the import/export dropdowns
z-index: $header-z-index - 1;

&::after {
content: ' ';
Expand Down

0 comments on commit 3aed914

Please sign in to comment.