I’ve been stuggling to give a custom border style to my Group element. I’m looking for
- A gradient border
- Curved corners
- Transparent fill
Ideally it should look like below
I’ve managed to get Gradient border and transparent fill with below code but its not giving curved borders
<style>
#gradient-border-2 {
border-radius: 10px !important;
border: 3px solid;
border-image: linear-gradient(to right, #FC8450, #A23CF8) 1;
background-color: transparent;
}
</style>
In the inspect element tab, I see border radius being over-ridden by something
Can anyone help with this issue? Thanks a ton!