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') }} {{ 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;