How to disable the topbar in mobile? [closed]

You can do it with CSS.

@media screen and (max-width: 600px) {
   .qodef-top-bar {
       display: none;
   }
}