mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-26 13:13:03 +00:00
fix: minor graphical issues
This commit is contained in:
parent
bf865f8fea
commit
041cc70cf5
4 changed files with 135 additions and 129 deletions
|
@ -57,6 +57,10 @@
|
||||||
background: rgba(255, 0, 0, 0.5);
|
background: rgba(255, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.videoRuntimeFloat.style-UPCOMING {
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
.vid-title {
|
.vid-title {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-line-clamp: 2;
|
-webkit-line-clamp: 2;
|
||||||
|
|
|
@ -40,7 +40,7 @@ export default {
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
paginate() {
|
paginate() {
|
||||||
if (this.recommends) {
|
if (this.recommends && !this.loading) {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.$youtube
|
this.$youtube
|
||||||
.recommendContinuation(
|
.recommendContinuation(
|
||||||
|
|
|
@ -55,7 +55,7 @@ export default {
|
||||||
await this.$youtube.getAPI();
|
await this.$youtube.getAPI();
|
||||||
this.progressMsg = "Launching";
|
this.progressMsg = "Launching";
|
||||||
|
|
||||||
this.$router.push(`/${localStorage.getItem("startPage") || "home"}`);
|
this.$router.replace(`/${localStorage.getItem("startPage") || "home"}`); // Prevent user from navigating back to the splash screen
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -39,7 +39,9 @@
|
||||||
<v-card-text
|
<v-card-text
|
||||||
style="font-size: 0.75rem"
|
style="font-size: 0.75rem"
|
||||||
class="background--text pa-0"
|
class="background--text pa-0"
|
||||||
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
|
:class="
|
||||||
|
$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<div style="margin-bottom: 1rem">
|
<div style="margin-bottom: 1rem">
|
||||||
<template
|
<template
|
||||||
|
|
Loading…
Reference in a new issue