mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-01-16 03:23:59 +01:00
16 lines
436 B
CSS
16 lines
436 B
CSS
/* Dropdown-Menüs verstecken */
|
|
.dropdown-menu {
|
|
display: none;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
width: max-content !important; /* Passt die Breite an das breiteste Item an */
|
|
box-sizing: border-box; /* Berücksichtigt Innenabstand und Rahmen */
|
|
}
|
|
|
|
/* Positionierung von Submenüs */
|
|
.dropdown-submenu > .dropdown-menu {
|
|
position: absolute;
|
|
transition: opacity 0.3s ease, visibility 0.3s ease;
|
|
top: 0;
|
|
}
|