Skip to content

Commit 34fcfe0

Browse files
Fix: Tooltip and turn page buttons are not below bullet list point text (#632)
## Description I just added a very high z-index to turn-page, so both the turn page button and tooltip are above everything else. If there's a better number for z-index, let me know. I saw a [cool way to manage z-index on larger projects](https://www.smashingmagazine.com/2021/02/css-z-index-large-projects/), but wasn't sure what would be helpful. Setting it to 99999 seems messy to me. Fixes #630
1 parent f5f0498 commit 34fcfe0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

EssentialCSharp.Web/wwwroot/css/styles.css

+1
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ a:hover {
311311
top: calc(100vh - 9rem);
312312
top: calc(100dvh - 9rem);
313313
display: flex;
314+
z-index: 99999;
314315
justify-content: space-between;
315316
position: -webkit-sticky; /* Safari */
316317
position: sticky;

0 commit comments

Comments
 (0)