From 8bc1569242483399050dd1499362198e9020dd20 Mon Sep 17 00:00:00 2001 From: Symon Baikov Date: Sat, 7 Jun 2025 14:44:45 +0300 Subject: [PATCH] fix: Responsive label color selector, improve action button styles (#1184) --- .../components/labels/LabelsStep/AddStep.jsx | 4 +- .../labels/LabelsStep/AddStep.module.scss | 10 ----- .../components/labels/LabelsStep/EditStep.jsx | 15 ++++--- .../labels/LabelsStep/EditStep.module.scss | 14 +++---- .../labels/LabelsStep/Editor.module.scss | 41 ++++++++++++------- client/src/lib/popup/Popup.module.css | 2 +- 6 files changed, 44 insertions(+), 42 deletions(-) delete mode 100644 client/src/components/labels/LabelsStep/AddStep.module.scss diff --git a/client/src/components/labels/LabelsStep/AddStep.jsx b/client/src/components/labels/LabelsStep/AddStep.jsx index 71959a60..2a4934d8 100755 --- a/client/src/components/labels/LabelsStep/AddStep.jsx +++ b/client/src/components/labels/LabelsStep/AddStep.jsx @@ -15,8 +15,6 @@ import { useForm } from '../../../hooks'; import LABEL_COLORS from '../../../constants/LabelColors'; import Editor from './Editor'; -import styles from './AddStep.module.scss'; - const AddStep = React.memo(({ cardId, defaultData, onBack }) => { const dispatch = useDispatch(); const [t] = useTranslation(); @@ -52,7 +50,7 @@ const AddStep = React.memo(({ cardId, defaultData, onBack }) => {
-