Hi How can i make this universal site link color a gradient? how can i apply this custom css to it
$el {
/* Fallback: Set a background color. */
background-color: red;
/* Create the gradient. */
background-image: linear-gradient(to right, #9357cc 8%, #2989d8 40%, #2cc99d 90%);
/* Set the background size and repeat properties. */
background-size: 100%;
background-repeat: repeat;
/* Use the text as a mask for the background. /
/ This will show the gradient as a text color rather than element bg. */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
