Hi @dammirus,
Go to Appearance → Customize → Additional CSS (the menu labels might be different in your language) and add the code below:
.toggle-menu { display: none !important; }
.site-nav { display: block !important; }
This display the menu items side by side, though. To do that, you’ll need to copy the menu styles in the @media ( min-width: 620px )
media query and move then to Additional CSS as well.
— Anders