Fix dropdown menu location (mobile menu).
This commit is contained in:
@@ -40,7 +40,6 @@ export class HeaderComponent implements OnInit {
|
||||
toggleMobileDropdown(): void {
|
||||
const dropdownContentStyle = document.getElementById('menu-mobile-dropdown-content')!.style;
|
||||
if (dropdownContentStyle.display == 'block') {
|
||||
//FIXME: Currently doesn't work because content overlaps button
|
||||
dropdownContentStyle.display = 'none';
|
||||
} else {
|
||||
dropdownContentStyle.display = 'block';
|
||||
|
||||
Reference in New Issue
Block a user