style: add pointer to + and - button on playback speed
All checks were successful
repod / xml (push) Successful in 2m36s
repod / php (push) Successful in 1m4s
repod / nodejs (push) Successful in 3m5s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-01-17 17:45:24 +01:00
parent c101588eaf
commit 87294d1881

View File

@ -8,9 +8,9 @@
{{ t('repod', 'Playback speed') }}
</label>
<div>
<Minus :size="20" @click="changeRate(-.5)" />
<Minus class="pointer" :size="20" @click="changeRate(-.5)" />
<NcCounterBubble>x{{ player.rate }}</NcCounterBubble>
<Plus :size="20" @click="changeRate(.5)" />
<Plus class="pointer" :size="20" @click="changeRate(.5)" />
</div>
</div>
</NcAppNavigationSettings>
@ -51,6 +51,10 @@ export default {
</script>
<style scoped>
.pointer {
cursor: pointer;
}
.setting {
display: flex;
justify-content: space-between;