From 97884a529305e860d1b4f1756c37e5656f156261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Malak?= Date: Sun, 23 Jul 2023 10:45:26 +0200 Subject: [PATCH] Fixed bug where color inputs in theme creator/editor were too small (fixing #429) --- .../Settings/Themer/ThemeBuilder/ThemeCreator.module.css | 1 - .../components/UI/Forms/InputGroup/InputGroup.module.css | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/client/src/components/Settings/Themer/ThemeBuilder/ThemeCreator.module.css b/client/src/components/Settings/Themer/ThemeBuilder/ThemeCreator.module.css index 893095f..f135f18 100644 --- a/client/src/components/Settings/Themer/ThemeBuilder/ThemeCreator.module.css +++ b/client/src/components/Settings/Themer/ThemeBuilder/ThemeCreator.module.css @@ -2,5 +2,4 @@ display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 10px; - margin-bottom: 20px; } diff --git a/client/src/components/UI/Forms/InputGroup/InputGroup.module.css b/client/src/components/UI/Forms/InputGroup/InputGroup.module.css index f22dc5f..cd7fd81 100644 --- a/client/src/components/UI/Forms/InputGroup/InputGroup.module.css +++ b/client/src/components/UI/Forms/InputGroup/InputGroup.module.css @@ -40,5 +40,11 @@ } .InputGroup input[type='color'] { - all: unset; + margin: 0; + padding: 0; + background-color: transparent; +} + +.InputGroup input[type='color']:hover { + cursor: pointer; }