Add material-icons fill class to play icon in LazyBookCard.vue

This commit is contained in:
Greg Lorenzen 2024-07-08 16:43:50 +00:00
parent 2c65b8fd2b
commit e55cf30705

View File

@ -45,7 +45,7 @@
<div cy-id="overlay" v-show="!booksInSeries && libraryItem && (isHovering || isSelectionMode || isMoreMenuOpen) && !processing" class="w-full h-full absolute top-0 left-0 z-10 bg-black rounded md:block" :class="overlayWrapperClasslist">
<div cy-id="playButton" v-show="showPlayButton" class="h-full flex items-center justify-center pointer-events-none">
<div class="hover:text-white text-gray-200 hover:scale-110 transform duration-200 pointer-events-auto" @click.stop.prevent="play">
<span class="material-symbols" :style="{ fontSize: playIconFontSize + 'em' }">play_arrow</span>
<span class="material-symbols fill" :style="{ fontSize: playIconFontSize + 'em' }">play_arrow</span>
</div>
</div>