Using Vaadin to design my front-end, I encountered an issue where adding border-style:solid
to the style.css file resulted in a scrollable v-panel. How can I retain the solid style while removing the scrolling feature? Please refer to the screenshot for clarity.
Even after attempting to use panel.setScrollable(false);
, the scrolling option persisted and did not work as expected.
The goal is to eliminate the scrolling functionality from this panel completely.
Complete CSS code snippet:
v-panel-panelBack{
border-style:solid;
border-width:thick;
border-color:darkgray;
}