From 467a6638a09f187614159ab3d850c6bc2417f819 Mon Sep 17 00:00:00 2001 From: vitrinekast Date: Mon, 9 Dec 2024 10:49:23 +0100 Subject: [PATCH] remove annoying cursor --- src/assets/style.css | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/assets/style.css b/src/assets/style.css index 5bbe959..dd35124 100644 --- a/src/assets/style.css +++ b/src/assets/style.css @@ -21,21 +21,10 @@ header { font-family: monospace; } -@keyframes cursor-animate { - from { - cursor: url('data:image/svg+xml;utf8,'), - auto; - } - to { - cursor: url('data:image/svg+xml;utf8,'), - auto; - } -} - body { font-family: sans-serif; background-color: var(--background); - animation: 1s cursor-animate linear infinite; + color: var(--text); }