I simply wants to modify a styling property for safari browsers only, which will override the default property.
simple example:
Default
div {
color: blue;
}
Safari browsers
div {
color: red;
}
I imagine this can be done with the @include function of scss but I am not sure how.