Currently I am setting the height of the rows in SlickGrid trough options programatically:\[code\]var options = { rowHeight: 30};\[/code\]Is there any way I could do it trough CSS rule without modifying slick-grid default implementation?I am asking this becaous I wan't to set row height based on CSS Media Queries.My initial idea was to read CSS property programatically (something like this) and set readen value like that:\[code\]var options = { rowHeight: readRowHeightCSSValue()};\[/code\]...but I am not sure whether this is best idea.