App card width slider

Added a slider to determine the XL app card width
This commit is contained in:
Aimsucks
2022-06-14 17:45:22 +00:00
parent 778988de58
commit bd920dfc86
4 changed files with 52 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import { useForm } from '@mantine/form';
import { useConfig } from '../../tools/state';
import { ColorSelector } from './ColorSelector';
import { OpacitySelector } from './OpacitySelector';
import { AppCardWidthSelector } from './AppCardWidthSelector';
import { ShadeSelector } from './ShadeSelector';
export default function TitleChanger() {
@@ -58,6 +59,7 @@ export default function TitleChanger() {
<ColorSelector type="secondary" />
<ShadeSelector />
<OpacitySelector />
<AppCardWidthSelector />
</Group>
);
}