mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Fall back to a full row if columnal layout isn't enough
This commit is contained in:
@@ -100,14 +100,14 @@
|
||||
</v-row>
|
||||
|
||||
<v-row>
|
||||
<v-col md="8" offset-md="1" v-if="comments && comments.comments">
|
||||
<v-col cols="12" md="8" offset-md="1" v-if="comments && comments.comments">
|
||||
<h5 class="text-h4 text-center my-4">Comments</h5>
|
||||
<VideoComment v-for="comment in comments.comments" :key="comment.commentId" :comment="comment"
|
||||
:video="video" />
|
||||
<v-progress-linear indeterminate v-intersect="onCommentsProgressIntersect"
|
||||
v-if="comments.comments.length !== 0 && comments.nextpage != null" />
|
||||
</v-col>
|
||||
<v-col md="2" v-if="video && video.relatedStreams">
|
||||
<v-col cols="12" md="2" v-if="video && video.relatedStreams">
|
||||
<h5 class="text-h4 text-center my-4">Related Videos</h5>
|
||||
<VideoItem class="my-4" v-for="related in video.relatedStreams" :video="related" :key="related.url" />
|
||||
</v-col>
|
||||
|
||||
Reference in New Issue
Block a user