Hi,
I’m trying to use ui both for mobile and desktop users.
For mobile users I had create a menu with buttons, is there a best way to remove mix default menu from mobile views only?
I would like to remove Home div from page
Thanks
Hi,
- Create a CSS file with name
vaadin-app-layout.css
in thecomponents
directory within theme folder, e.g.:frontend/themes/<theme-folder>/components/vaadin-app-layout.css
. - Add the following to this file:
[part='navbar'][bottom] {
display: none;
}
- Add
vaadin.frontend.hotdeploy=true
toapplication.properties
otherwise the file above will be ignored.
Regards,
Gleb
1 Like