Skip to content

Commit

Permalink
fix: pop-up definition overlaps header
Browse files Browse the repository at this point in the history
The pop-up of the terms overlapped the header. Previously, changes were made to @diplodoc/client to solve the problem, with ref: diplodoc-platform/client#51

The changes caused new bug and it was decided to fix the initial bug in another way by changing the z-index of the terms themselves.
  • Loading branch information
JeikZim authored Jul 8, 2024
1 parent 4d71934 commit f1341ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scss/_term.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

&_dfn {
position: absolute;
z-index: 1000;
z-index: 100;

width: fit-content;
max-width: 450px;
Expand Down

0 comments on commit f1341ff

Please sign in to comment.