Reputation: 571
Hello,
It seems that table row height of UI5 Table is pretty big with lot of white space above and below the text.
Is there anyway I can resize the height of the row with lesser px? I want to apply this seeting only for this table and not all tables.
When I look at its CSS in Chrome Developer tools, I get following:
element.style{height: 49px}
is the culprit. How can I make it like 30 px and can apply only to this table?
Thanks !
Upvotes: 1
Views: 7052
Reputation: 308
Try using sapUiSizeCompact style in your page or your table. You cannot set exact height with this one but it might be enough for your case.
class="sapUiSizeCompact"
Upvotes: 1