how to get rounded corners in the popup of the dropdown list?
<div class="example-wrapper">
<p>T-shirt size:</p>
<kendo-dropdownlist [data]="listItems"
[popupSettings]="{
popupClass:'[border-round]'
}">
</kendo-dropdownlist>
</div>
where border round is defined in the css as
.border-round
{
border-radius:20px;
}
i tried this and it does not work