From 92d137bd3d74d570dfbec74efb39f891761d0261 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 22 Dec 2024 15:30:54 -0700 Subject: [PATCH] RC-27 | Finish styling the select --- Apps/common.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Apps/common.css b/Apps/common.css index 9605c7b..e85c82b 100644 --- a/Apps/common.css +++ b/Apps/common.css @@ -11,7 +11,7 @@ } input { - all: initial; + all: revert; box-sizing: border-box; border: none; outline: none; @@ -25,11 +25,18 @@ } select { - all: initial; + all: revert; + appearance: auto; box-sizing: border-box; border: none; outline: none; font-family: inherit; font-size: inherit; + display: flex; + align-items: center; + } + + label, input, select { + cursor: pointer; } }