I want to create a table with TelerikGrid whose border corners are rounded (border-radius: 8px). However, I noticed that the corners are under the table's sharp corners as exemplified in the files below. My TelerikGrid is as follows:
<span>
<TelerikGrid Data=@GridData>
<GridColumns>
<GridColumn Width="5%" />
<GridColumn Field="@nameof(...)"/>
<GridColumn Field="@nameof(...)" />
<GridColumn Field="@nameof(...)" />
<GridColumn Field="@nameof(...)" />
<GridColumn Field="@nameof(...)" />
</GridColumns>
</TelerikGrid>
</span>
and its css rules in the corresponding razor.css (wrapped the telerik component within a span tag so as to use the ::deep selector):
::deep .k-grid{
width: 100%;
height: 100%;
border: 1px solid #6495Ed4D;
border-radius: 8px;
opacity: 1;
}