mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-07-07 03:25:12 +02:00
25 lines
545 B
CSS
25 lines
545 B
CSS
/* Top-level dropdown menu */
|
|
.nav-item .dropdown-menu {
|
|
position: absolute; /* Important for positioning */
|
|
top: 100%; /* Default opening direction: downwards */
|
|
left: 0;
|
|
z-index: 1050; /* Ensures the menu appears above other elements */
|
|
}
|
|
|
|
/* Submenu position */
|
|
.dropdown-submenu > .dropdown-menu {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 100%; /* Opens to the right */
|
|
z-index: 1050;
|
|
}
|
|
|
|
/* Ensure a smooth transition */
|
|
.dropdown-menu {
|
|
transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
nav.navbar {
|
|
border-radius: 0;
|
|
}
|