repod/src/components/Atoms/AppContent.vue
Michel Roux c91c17ae66
All checks were successful
repod / xml (push) Successful in 22s
repod / php (push) Successful in 1m4s
repod / nodejs (push) Successful in 1m9s
repod / release (push) Has been skipped
fix: 🐛 fix opacity
2024-08-15 16:25:11 +02:00

28 lines
439 B
Vue

<template>
<NcAppContent :class="{ padding: episode }">
<slot />
</NcAppContent>
</template>
<script>
import { NcAppContent } from '@nextcloud/vue'
import { mapState } from 'pinia'
import { usePlayer } from '../../store/player.js'
export default {
name: 'AppContent',
components: {
NcAppContent,
},
computed: {
...mapState(usePlayer, ['episode']),
},
}
</script>
<style scoped>
.padding {
padding-bottom: 6rem;
}
</style>