diff --git a/frontend/app/components/ColorPicker/ColorPicker.jsx b/frontend/app/components/ColorPicker/ColorPicker.jsx index ffd64a6..a5082da 100644 --- a/frontend/app/components/ColorPicker/ColorPicker.jsx +++ b/frontend/app/components/ColorPicker/ColorPicker.jsx @@ -20,38 +20,37 @@ export const ColorPicker = (props) => { const [mode, setMode] = useState(ui("mode")); return ( - -
Выбор темы
-
- {colors.map((item) => { - return ( - - ); - })} -
-
- -
+ +
Выбор темы
+
+ {colors.map((item) => { + return ( + + ); + })} +
+
+ +
); };