Fall back to a full row if columnal layout isn't enough

This commit is contained in:
root
2022-03-13 05:17:18 +05:30
parent 07fc64a7e3
commit 1201c63626
+2 -2
View File
@@ -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>