From dfd55ae78391a26fb2a406d89653dbe92bdfb22c Mon Sep 17 00:00:00 2001 From: Maxime Lalo Date: Wed, 10 May 2023 14:29:30 +0200 Subject: [PATCH] :bug: Fixing checkbox style --- .../Components/DesignSystem/RadioBox/classes.module.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/front/Components/DesignSystem/RadioBox/classes.module.scss b/src/front/Components/DesignSystem/RadioBox/classes.module.scss index da7efcac..5052b70f 100644 --- a/src/front/Components/DesignSystem/RadioBox/classes.module.scss +++ b/src/front/Components/DesignSystem/RadioBox/classes.module.scss @@ -9,13 +9,14 @@ input[type="radio"] { appearance: none; background-color: transparent; - width: 16px; - height: 16px; + width: 15px; + height: 15px; border: 1px solid $turquoise-flash; border-radius: 100px; margin-right: 16px; - display: grid; - place-content: center; + display: flex; + align-items: center; + justify-content: center; margin-top: auto; margin-bottom: auto; }