From c95cba33890e102feb43ab0cf0ad2fe422464110 Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Fri, 14 Jan 2022 17:26:57 +0600 Subject: [PATCH] add cursor:pointer for button inputs --- .todo | 2 +- css/style.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.todo b/.todo index c0c34a2..3c75321 100644 --- a/.todo +++ b/.todo @@ -6,6 +6,6 @@ Tasks: ☐ Style login page ☐ Make site open to home timeline by default ☐ Show login prompt when not logged in instead of showing federated timeline - ☐ Add cursor:pointer for all buttons + ✔ Add cursor:pointer for all buttons @done(22-01-14 17:26) ☐ Replace loading animation ☐ Implement content warnings properly \ No newline at end of file diff --git a/css/style.css b/css/style.css index d2d6c6f..9a62ac1 100644 --- a/css/style.css +++ b/css/style.css @@ -722,3 +722,7 @@ aside { .media > div { width: 100%; } + +input[type="submit"] { + cursor: pointer; +}