react-typist icon indicating copy to clipboard operation
react-typist copied to clipboard

Cursor Color?

Open joshpeng1999 opened this issue 5 years ago • 1 comments

Is there a way to change the cursor color using css and assigning the className to the <Typist> tag?

joshpeng1999 avatar Dec 10 '20 05:12 joshpeng1999

You can simply override the SCSS in your Stylesheet.

Example: Adding the following snippet in your style sheet would update the color of the cursor to blue.

.Typist .Cursor {
  color: #00a2cf !important;
}

DarthBenro008 avatar Jan 14 '21 16:01 DarthBenro008