style: Beta Player Stuff

ui improvements, bug fixes, etc
This commit is contained in:
Front 2022-05-04 16:31:35 -04:00
parent bce23422e2
commit cd7797b9b7
1 changed files with 7 additions and 5 deletions

View File

@ -2,10 +2,11 @@
<div class="controls" @click="toggleControls()">
<div class="controlsWrap" ref="controlsWrap">
<v-btn class="centerVideoControls" @click="togglePlaying()" text>
<v-icon x-large v-text="playing ? 'mdi-pause' : 'mdi-play' " ref="pausePlayIndicator" />
</v-btn>
<div class="centerVideoControls">
<v-btn @click="togglePlaying()" text style="height: 5em; width: 5em;">
<v-icon size="5em" v-text="playing ? 'mdi-pause' : 'mdi-play' " ref="pausePlayIndicator" />
</v-btn>
</div>
</div>
@ -59,7 +60,8 @@
} else {
this.video.pause()
this.playing = false;
}
};
this.toggleControls(); // Prevent Screen From Closing
},
toggleControls() {