8000 fix: code container hiding navigation menu (#4707) · alandotcom/typescript-eslint@96bc69a · GitHub
[go: up one dir, main page]

Skip to content

Commit 96bc69a

Browse files
fix: code container hiding navigation menu (typescript-eslint#4707)
* fix: code container hiding navigation menu code container and navigation menu z-index values was same. Navigation menu was hidden behind code container for smaller screen. Code container has pushed down with the fix. * fix: fixed review comments Instead of hardcoded values, calculated z-index from the variable
1 parent 9284889 commit 96bc69a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/website/src/components/Playground.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
width: 100%;
4040
height: calc(100% - var(--ifm-navbar-height));
4141
top: var(--ifm-navbar-height);
42-
z-index: var(--ifm-z-index-fixed);
42+
z-index: calc(var(--ifm-z-index-fixed) - 1);
4343
}

0 commit comments

Comments
 (0)
0