VAADIN Grid

how do I adjust row height of vaadin grid in Css

Assuming you’ve already imported a CSS style module for the Grid. For example, using

@CssImport(value = "./styles/vaadin-grid-styles.css", themeFor = "vaadin-grid")

You can adjust the row height by adding the following style to the directory ‘frontend/styles/vaadin-grid-styles.css’

:host [part~="cell"]
{
	height: 60px;
}