Hab einen Workaround gefunden, falls es nochmal jemand braucht:
/*menü auf Desktop ausblenden mob_menu*/
a.uk-button.uk-navbar-toggle.uk-float-right
{
display: block; /* This is how it looks on mobile */
}
@media (min-width: 750px) {
a.uk-button.uk-navbar-toggle.uk-float-right
{
display: none!important; /* This is how it looks on desktop */
}
}
Please Log in or Create an account to join the conversation.