2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
|
|
|
<section id="profileWrapper">
|
2022-04-15 17:00:08 +00:00
|
|
|
<ScreenHeader>Profile & Preferences</ScreenHeader>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
|
|
|
<div class="main-scroll-wrap">
|
2022-12-02 16:17:37 +00:00
|
|
|
<ProfileForm />
|
|
|
|
<ThemeList />
|
|
|
|
<PreferencesForm />
|
|
|
|
<LastfmIntegration />
|
2022-04-15 14:24:30 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-07-07 18:05:46 +00:00
|
|
|
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
|
|
|
|
import ProfileForm from '@/components/profile-preferences/ProfileForm.vue'
|
|
|
|
import LastfmIntegration from '@/components/profile-preferences/LastfmIntegration.vue'
|
|
|
|
import PreferencesForm from '@/components/profile-preferences/PreferencesForm.vue'
|
2022-12-02 16:17:37 +00:00
|
|
|
import ThemeList from '@/components/profile-preferences/ThemeList.vue'
|
|
|
|
</script>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
#profileWrapper {
|
|
|
|
.main-scroll-wrap > * + * {
|
|
|
|
margin-top: 1.75rem;
|
|
|
|
padding-top: 1.75rem;
|
|
|
|
border-top: 1px solid var(--color-background-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-scroll-wrap h1 {
|
|
|
|
font-size: 1.85rem;
|
|
|
|
margin-bottom: 1.25rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|