6 lines
161 B
CSS
6 lines
161 B
CSS
|
.gradient-text {
|
||
|
background-image: linear-gradient(90deg, red, blue);
|
||
|
-webkit-background-clip: text;
|
||
|
background-clip: text;
|
||
|
color: transparent;
|
||
|
}
|