Hi All,
I'm having trouble with applying a border radius to the OutSystems Maps widget and I was wondering what I'm missing. My goal is to give the "Maps\Map" block a border radius of 4px like this:
However, both when applying the border radius to the surrounding container as well as inputting it directly on the Chrome Browser Developer Tool it does not change. How can I apply the border radius as a style to the map itself?
Hello @Bart van Orizande
You can add this to the class runtime-map-container in order to style it the way you mentioned:
.runtime-map-container { border: 4px solid blue; border-radius: 10px; }
It will look like this:
Hope it helps!
Cheers,GM
Thanks Gonçalo !