Skip to content

Commit 584e6a3

Browse files
committed
Fix the overlap problem
Since the dropdown menu and the post entry-link both have the same z-index value `1`, as post element appear later in the HTML structure, so it will place above the dropdown menu, so we couldn't click the dropdown menu if it overlap with content title.
1 parent adc01aa commit 584e6a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/css/extended/header.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
box-shadow: 0px 8px 16px 0px var(--border);
1111
border-radius: 8px;
1212
line-height: 1.3rem;
13-
z-index: 1;
13+
z-index: 2;
1414
}
1515

1616
.dropdown:hover .dropdown-content {

0 commit comments

Comments
 (0)