mirror of
https://github.com/VueTubeApp/VueTube
synced 2025-01-05 07:01:14 +00:00
general performance cleanup
This commit is contained in:
parent
fa876c02a6
commit
6ff5c51c3a
3 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
# BetterTube
|
||||
# VueTube
|
||||
|
||||
## Build Setup
|
||||
|
||||
|
|
|
@ -122,6 +122,11 @@ export default {
|
|||
//--- Load Saved Theme ---//
|
||||
const theme = this.$auth.$storage.getLocalStorage("darkTheme");
|
||||
if (theme != undefined) {
|
||||
/*
|
||||
this.$vuetify.theme.themes.dark.accent = '#222',
|
||||
this.$vuetify.theme.themes.dark.accent2 = '#222',
|
||||
this.$vuetify.theme.themes.dark.background = '#333'
|
||||
*/
|
||||
this.$vuetify.theme.dark = theme;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,9 +16,8 @@
|
|||
<v-img :src="video.thumbnails[video.thumbnails.length - 1].url" />
|
||||
<p v-text="video.runtime" class="videoRuntimeFloat background--text" />
|
||||
</div>
|
||||
<p v-text="video.title" />
|
||||
<p v-text="`${video.views} • ${video.uploaded}`" />
|
||||
<p v-text="video.id" />
|
||||
<div v-text="video.title" style="margin-top: 0.5em;" />
|
||||
<div v-text="`${video.views} • ${video.uploaded}`" />
|
||||
</v-card-text>
|
||||
</v-card>
|
||||
</v-list-item>
|
||||
|
@ -28,6 +27,7 @@
|
|||
<style scoped>
|
||||
.entry {
|
||||
margin-top: 1em;
|
||||
width: 100%; /* Prevent Loading Issues */
|
||||
}
|
||||
.videoRuntimeFloat {
|
||||
position: absolute;
|
||||
|
|
Loading…
Reference in a new issue