From 6c33050c671b6b4506a5733ab4b361e4afdd1fd0 Mon Sep 17 00:00:00 2001 From: mikecentric <67880859+mikecentric@users.noreply.github.com> Date: Thu, 20 Apr 2023 00:49:54 +1000 Subject: [PATCH] Replace the use of the letter L for the cursor --- src/ReactRotatingText.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ReactRotatingText.css b/src/ReactRotatingText.css index 7609f6c..cda0f6d 100644 --- a/src/ReactRotatingText.css +++ b/src/ReactRotatingText.css @@ -1,5 +1,12 @@ .react-rotating-text-cursor { animation: blinking-cursor 0.8s cubic-bezier(0.68, 0.01, 0.01, 0.99) 0s infinite; + height: 50px; + width: 2px; + display: inline-block; + background: grey; + position: relative; + top: 8px; + left: 5px; } @-moz-keyframes blinking-cursor { @@ -48,4 +55,4 @@ 100% { opacity: 0; } -} \ No newline at end of file +}