Skip to content

Commit b17e3a1

Browse files
authored
Fix z-index bug in style.css (#1895)
Fix z-index bug where "copy code" button and header have the same index leading to "copy code" button appearing on top of the header.
1 parent 0082552 commit b17e3a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

css/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ header {
334334
align-items: center;
335335
justify-content: space-between;
336336
padding-inline: 25px;
337-
z-index: 100;
337+
z-index: 200;
338338
border-bottom: 1px solid var(--hover-fg);
339339
}
340340

0 commit comments

Comments
 (0)