From 758f9e71ca6aa27b4f3703a3a4e3be1ef7d07ce0 Mon Sep 17 00:00:00 2001 From: "Kalle (Sendou)" <38327916+Sendouc@users.noreply.github.com> Date: Sun, 5 Dec 2021 13:52:47 +0200 Subject: [PATCH] Global checkbox styles --- app/styles/global.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/styles/global.css b/app/styles/global.css index ce1cbe375..8f6cb533a 100644 --- a/app/styles/global.css +++ b/app/styles/global.css @@ -121,6 +121,7 @@ input:not(.plain) { border-radius: var(--rounded); color: var(--text); outline: none; + accent-color: var(--theme); } input:user-invalid { @@ -146,6 +147,11 @@ input:not(.plain).error { outline: 2px solid var(--theme-error); } +input[type="checkbox"] { + height: 16px; + width: 16px; +} + label { display: block; color: var(--text-lighter);