fix: 🐛 No pointer on play / stop icon on episodes list fix #264
This commit is contained in:
parent
2272cb5511
commit
475732fce2
@ -19,7 +19,7 @@
|
||||
:title="t('repod', 'Play')"
|
||||
@click="load(episode, url)">
|
||||
<template #icon>
|
||||
<PlayIcon :size="20" />
|
||||
<PlayIcon class="pointer" :size="20" />
|
||||
</template>
|
||||
</NcActionButton>
|
||||
<NcActionButton
|
||||
@ -28,7 +28,7 @@
|
||||
:title="t('repod', 'Stop')"
|
||||
@click="load(null)">
|
||||
<template #icon>
|
||||
<StopIcon :size="20" />
|
||||
<StopIcon class="pointer" :size="20" />
|
||||
</template>
|
||||
</NcActionButton>
|
||||
</template>
|
||||
@ -211,6 +211,10 @@ export default {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user