fix(navbar): perbaiki dropdown menu agar tidak mempengaruhi tinggi navbar dengan position absolute
This commit is contained in:
parent
03f19831a4
commit
5c43197cd1
|
|
@ -883,6 +883,7 @@ .dropdown-menu {
|
|||
border-radius: 12px;
|
||||
box-shadow: var(--shadow-2);
|
||||
z-index: 99999;
|
||||
position: absolute !important;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
|
|
@ -1043,6 +1044,10 @@ .nav-auth-actions {
|
|||
gap: 0.6rem;
|
||||
}
|
||||
|
||||
.nav-auth-actions .dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.navbar .btn-sm {
|
||||
border-radius: 12px;
|
||||
font-size: 0.84rem;
|
||||
|
|
@ -2010,7 +2015,7 @@ .user-dropdown {
|
|||
padding: 0.5rem;
|
||||
margin-top: 0.5rem;
|
||||
z-index: 99999;
|
||||
position: relative;
|
||||
position: absolute !important;
|
||||
}
|
||||
|
||||
.user-dropdown .dropdown-header {
|
||||
|
|
|
|||
Loading…
Reference in New Issue