From cacb11b8e7d77eb98529fc76669ffb01b1e8ced8 Mon Sep 17 00:00:00 2001 From: orfelorfel23 Date: Thu, 4 Jun 2026 00:51:37 +0200 Subject: [PATCH] UI: Add custom glowing I-beam text cursor --- public/cursor-text.svg | 17 +++++++++++++++++ src/index.css | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 public/cursor-text.svg diff --git a/public/cursor-text.svg b/public/cursor-text.svg new file mode 100644 index 0000000..8e80990 --- /dev/null +++ b/public/cursor-text.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/index.css b/src/index.css index b63ef1a..59710d9 100644 --- a/src/index.css +++ b/src/index.css @@ -45,7 +45,7 @@ } input, textarea { - cursor: text; + cursor: url('/cursor-text.svg') 12 12, text; } body {