I want to make rounded edges for my table. Just tried to modify v-table-border-radius. It did just make the border round, so it looks like that:
What could I do?
I want to make rounded edges for my table. Just tried to modify v-table-border-radius. It did just make the border round, so it looks like that:
What could I do?
Copyright © 2021 Jogjafile Inc.

The following style resolves the issue:
Add it to the theme extension, e.g. in the
hover-ext.scssfile.It is also worth adding bigger padding for the first column caption, e.g.:
Pay attention that the
v-table-border-radiusvariable is used to add border radius to table header and footer. Footer is hidden until you use aggregation withaggregationStyle="BOTTOM". In order to have bottom border radius without footer, I'd recommend adding a custom style name to a table that adds bottom border radius instead of adding it globally in case you'll use BOTTOM aggregation, e.g.:<table stylename="bottom-border-radius" ...>with the following style implementation:Upd: improved styles for screen background color that differs from table background color. Upd2: Added custom styles for bottom border radius.