frontend: move theme dialog to bottom left

This commit is contained in:
Kentai Radiquum 2024-04-21 21:39:43 +05:00
parent b9af35ee75
commit 64886347f2
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -20,14 +20,14 @@ export const ColorPicker = (props) => {
const [mode, setMode] = useState(ui("mode")); const [mode, setMode] = useState(ui("mode"));
return ( return (
<dialog className="active"> <dialog className="active left round bottom small" style={{blockSize: "unset"}}>
<h5>Выбор темы</h5> <h5>Выбор темы</h5>
<div className="grid center-align"> <div className="grid center-align">
{colors.map((item) => { {colors.map((item) => {
return ( return (
<button <button
key={item.color} key={item.color}
className={`circle small ${item.color} s2`} className={`circle border small ${item.color} s2`}
onClick={() => props.theme(item.hex)} onClick={() => props.theme(item.hex)}
></button> ></button>
); );
@ -44,7 +44,6 @@ export const ColorPicker = (props) => {
> >
{mode == "light" ? <i>dark_mode</i> : <i>light_mode</i>} {mode == "light" ? <i>dark_mode</i> : <i>light_mode</i>}
</button> </button>
<span className="max"></span>
<button <button
className={`circle small transparent `} className={`circle small transparent `}
onClick={() => props.setColorPicker(!props.colorPicker)} onClick={() => props.setColorPicker(!props.colorPicker)}