Safari radial gradient

background-image: -webkit-radial-gradient(circle at 50% 50%, #e14e2f, #b32f1d 36%, #63180f); doesn’t work in safari desktop, but fine on mobile.

solution:
background-image: -webkit-radial-gradient(50% 50%, circle, #e14e2f, #b32f1d 36%, #63180f);

Ok so you’re saying the first way which doesn’t result well in safari is how it exports from webflow? Thanks for sharing the find!