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.
This commit is contained in:
Dhyan Rai
2025-05-08 09:23:09 -04:00
committed by GitHub
parent 008255253d
commit b17e3a1446

View File

@@ -334,7 +334,7 @@ header {
align-items: center;
justify-content: space-between;
padding-inline: 25px;
z-index: 100;
z-index: 200;
border-bottom: 1px solid var(--hover-fg);
}