Update from Main

This commit is contained in:
Dragos
2022-12-18 13:01:27 +02:00
committed by GitHub
parent 3444c96118
commit fa9381a6d7
12 changed files with 266 additions and 75 deletions

View File

@@ -0,0 +1,24 @@
<script>
export default {
props: {
link: String,
},
};
</script>
<template>
<template v-if="this.getPreferenceBoolean('showWatchOnYouTube', false)">
<a :href="link" class="pp-watch-onyt-btn btn" role="button" :title="$t('player.watch_on') + 'YouTube'">
<font-awesome-icon class="mx-1.5" :icon="['fab', 'youtube']" />
</a>
</template>
</template>
<style>
.pp-watch-onyt-btn {
display: flex;
margin-left: var(--efy_gap0);
align-items: center;
gap: 5rem;
}
</style>