From 3f7ffbc8850123ce325b11278b0a809ebb532295 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Sun, 12 Nov 2023 21:07:26 +0100 Subject: [PATCH] fix(front): make all buttons clickable --- front/src/style/globals/_app.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/front/src/style/globals/_app.scss b/front/src/style/globals/_app.scss index 1fc69cd8c..952cb307b 100644 --- a/front/src/style/globals/_app.scss +++ b/front/src/style/globals/_app.scss @@ -17,3 +17,7 @@ html { input[type=search]::-webkit-search-cancel-button { appearance: none; } + +button:enabled, [role="button"]:enabled { + cursor: pointer; +}