Merge branch 'main' of https://github.com/Frontesque/VueTube into working

This commit is contained in:
Alex 2022-05-04 09:48:36 +12:00
commit e8e13935b7
1 changed files with 10 additions and 7 deletions

View File

@ -2,8 +2,8 @@
<div>
<v-btn class="centerVideoControls" @click="togglePlaying()">
<v-icon v-text="playing ? 'mdi-pause' : 'mdi-play' " ref="pausePlayIndicator" />
<v-btn class="centerVideoControls" @click="togglePlaying()" text>
<v-icon x-large v-text="playing ? 'mdi-pause' : 'mdi-play' " ref="pausePlayIndicator" />
</v-btn>
@ -17,7 +17,10 @@
left: 50%;
transform: translate(-50%, -50%);
}
.pausePlay {
min-height: 5em;
min-width: 5em;
}
</style>
<script>