mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Add max width to chapter.
This commit is contained in:
parent
9a014c4052
commit
dfed90c1cc
1 changed files with 7 additions and 6 deletions
|
@ -1,11 +1,6 @@
|
|||
<template>
|
||||
<h2 v-t="'video.chapters'" />
|
||||
<div
|
||||
:key="chapter.start"
|
||||
v-for="chapter in props.chapters"
|
||||
@click="$emit('seek', chapter.start)"
|
||||
class="flex items-center mb-2 cursor-pointer w-sm"
|
||||
>
|
||||
<div :key="chapter.start" v-for="chapter in props.chapters" @click="$emit('seek', chapter.start)" class="chapter">
|
||||
<img :src="chapter.image" :alt="chapter.title" class="h-12" />
|
||||
<div class="ml-1">
|
||||
<span class="text-xl" v-text="chapter.title" />
|
||||
|
@ -15,6 +10,12 @@
|
|||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.chapter {
|
||||
@apply flex items-center mb-2 cursor-pointer w-sm max-w-90vw;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script setup>
|
||||
import { defineProps, defineEmits } from "vue";
|
||||
|
||||
|
|
Loading…
Reference in a new issue