mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2025-11-04 14:41:57 +00:00 
			
		
		
		
	Add max width to chapter.
This commit is contained in:
		@@ -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";
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user