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 ( - props.theme(item.hex)} - > - ); - })} - - - - { - props.mode(); - setMode(ui("mode")); - }} - > - {mode == "light" ? dark_mode : light_mode} - - - props.setColorPicker(!props.colorPicker)} - > - close - - - + + Выбор темы + + {colors.map((item) => { + return ( + props.theme(item.hex)} + > + ); + })} + + + + { + props.mode(); + setMode(ui("mode")); + }} + > + {mode == "light" ? dark_mode : light_mode} + + props.setColorPicker(!props.colorPicker)} + > + close + + + ); };