Hello everyone! I’d like to know, is it possible to position drawer to right side? Currently it positioned in left side and I can’t change it without major changes.
If there’s a way to put a drawer to right side, please, let me know
Vaadin V14
1 Like
Found solution:
Create file with css-styles, which will implement to our drawer through @CssImport(“drawer-styles.css”, themeFor = “vaadin-app-layout”) and drawer-styles.css file should contain selector like:
[part="drawer"] {
right: 1px;
left: auto;
transform: translateX(100%);
}
1 Like