I tried giving a specific grid column a border radius to round one of the corners but I wasn’t able to get it to work.
On the html page I gave the ion-col a class:
<ion-col class="iborti" col-4>Grid Content Here</ion-col>
and on the variables.scss I tried 2 different styling methods:
.iboriti {
border: 1px solid #eee8d5;
pointer-events: none;
font-style: italic;
border-radius: 20px 0px 0px 0px;
}
and also
.iboriti {
border: 1px solid #eee8d5;
pointer-events: none;
font-style: italic;
border-top-right-radius: 20px;
}
Any advice is appreciated! Thanks!