Add invisible bridge to dropdown menu for easier hovering

This commit is contained in:
Sylvestre Ledru
2026-04-01 08:32:34 +02:00
parent cec9008f2f
commit c0e7d2471e
+9
View File
@@ -170,6 +170,15 @@ header a:hover:not(.home) {
border-bottom: 2px solid var(--link-text-color);
}
.dropdown-menu::before {
content: "";
position: absolute;
bottom: 100%;
left: 0;
right: 0;
height: 0.75rem;
}
.dropdown-menu {
display: none;
position: absolute;