style: add pointer to + and - button on playback speed
This commit is contained in:
parent
c101588eaf
commit
87294d1881
@ -8,9 +8,9 @@
|
|||||||
{{ t('repod', 'Playback speed') }}
|
{{ t('repod', 'Playback speed') }}
|
||||||
</label>
|
</label>
|
||||||
<div>
|
<div>
|
||||||
<Minus :size="20" @click="changeRate(-.5)" />
|
<Minus class="pointer" :size="20" @click="changeRate(-.5)" />
|
||||||
<NcCounterBubble>x{{ player.rate }}</NcCounterBubble>
|
<NcCounterBubble>x{{ player.rate }}</NcCounterBubble>
|
||||||
<Plus :size="20" @click="changeRate(.5)" />
|
<Plus class="pointer" :size="20" @click="changeRate(.5)" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</NcAppNavigationSettings>
|
</NcAppNavigationSettings>
|
||||||
@ -51,6 +51,10 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
.setting {
|
.setting {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
Loading…
Reference in New Issue
Block a user