homepage.veen.world/app/static/css/navigation.css

20 lines
528 B
CSS
Raw Permalink Normal View History

/* Top-Level Dropdown-Menü */
.nav-item .dropdown-menu {
position: absolute; /* Wichtig für Positionierung */
top: 100%; /* Standardmäßige Öffnung nach unten */
left: 0;
z-index: 1050; /* Damit das Menü über anderen Elementen liegt */
2025-01-14 21:31:02 +01:00
}
/* Submenu-Position */
2025-01-14 21:31:02 +01:00
.dropdown-submenu > .dropdown-menu {
2025-01-14 17:19:09 +01:00
position: absolute;
top: 0;
left: 100%; /* Öffnen nach rechts */
z-index: 1050;
}
/* Sicherstellen, dass der Übergang smooth ist */
.dropdown-menu {
transition: all 0.3s ease-in-out;
2025-01-15 13:47:51 +01:00
}