Restyle history page (#412)

This commit is contained in:
IceDBorn 2021-09-04 18:39:04 +03:00 committed by GitHub
parent 1c7a707e9e
commit 6c473d58ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,15 @@
<template>
<h1 class="uk-text-bold uk-text-center">Watch History</h1>
<br />
Sort by:
<select class="uk-select uk-width-auto" v-model="selectedSort" @change="onChange()">
<option value="descending">Most Recent</option>
<option value="ascending">Least Recent</option>
<option value="channel_ascending">Channel Name (A-Z)</option>
<option value="channel_descending">Channel Name (Z-A)</option>
</select>
<div style="text-align: right">
Sort by:
<select class="uk-select uk-width-auto" v-model="selectedSort" @change="onChange()">
<option value="descending">Most Recent</option>
<option value="ascending">Least Recent</option>
<option value="channel_ascending">Channel Name (A-Z)</option>
<option value="channel_descending">Channel Name (Z-A)</option>
</select>
</div>
<hr />
@ -22,6 +23,8 @@
<VideoItem :video="video" />
</div>
</div>
<br />
</template>
<script>