mirror of
https://github.com/koel/koel
synced 2024-11-28 23:10:27 +00:00
34 lines
811 B
Vue
34 lines
811 B
Vue
<template>
|
|
<section>
|
|
<h1>Theme</h1>
|
|
<ul class="themes">
|
|
<li v-for="theme in themes" :key="theme.id" data-testid="theme-card">
|
|
<ThemeCard :key="theme.id" :theme="theme" @selected="setTheme" />
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { toRef } from 'vue'
|
|
import { themeStore } from '@/stores'
|
|
|
|
import ThemeCard from '@/components/profile-preferences/ThemeCard.vue'
|
|
|
|
const themes = toRef(themeStore.state, 'themes')
|
|
|
|
const setTheme = (theme: Theme) => themeStore.setTheme(theme)
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.themes {
|
|
display: grid;
|
|
grid-auto-rows: 8rem;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
grid-gap: .75rem 1rem;
|
|
|
|
@media only screen and (max-width: 667px) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
</style>
|