style: fix settings page formatting
This commit is contained in:
parent
6d5ef6809a
commit
1cb5fe9f8b
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
||||||
import { onMount } from 'svelte'
|
import { onMount } from 'svelte'
|
||||||
import { fly } from 'svelte/transition'
|
import { fly } from 'svelte/transition'
|
||||||
|
|
||||||
settingsStore.subscribe(async value => {
|
settingsStore.subscribe(async (value) => {
|
||||||
window.localStorage.setItem('settings', JSON.stringify(value))
|
window.localStorage.setItem('settings', JSON.stringify(value))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<AppContainer
|
<AppContainer
|
||||||
class="flex gap-6 bg-blue-200 bg-opacity-25 backdrop-blur-xl media-background rounded-3xl flex-wrap px-10 py-20 transition-all"
|
class="flex flex-col gap-6 bg-blue-200 bg-opacity-25 backdrop-blur-xl media-background rounded-3xl flex-wrap px-10 py-20 transition-all"
|
||||||
>
|
>
|
||||||
<h1 class="text-5xl font-medium text-slate-100 basis-full">Settings</h1>
|
<h1 class="text-5xl font-medium text-slate-100 basis-full">Settings</h1>
|
||||||
<p class="text-slate-300">Hover over setting names to see helpful tooltips</p>
|
<p class="text-slate-300">Hover over setting names to see helpful tooltips</p>
|
||||||
|
|
Loading…
Reference in a new issue