Fix workflow, UI settings as store

This commit is contained in:
Djuri 2024-06-09 00:23:39 +02:00
parent e53b487236
commit 6a71f80718
5 changed files with 19 additions and 16 deletions

7
src/lib/uiSettings.ts Normal file
View file

@ -0,0 +1,7 @@
import { writable } from 'svelte/store';
export const uiSettings = writable({
inputSize: 'sm',
selectClass: '',
btnSize: 'lg'
});