mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 00:54:33 +01:00
34 lines
687 B
Vue
34 lines
687 B
Vue
<template>
|
|
<div class="flex h-full px-1 overflow-hidden">
|
|
<div class="w-10 h-10 flex items-center justify-center">
|
|
<span class="material-icons text-2xl text-gray-200">record_voice_over</span>
|
|
</div>
|
|
<div class="flex-grow px-2 narratorSearchCardContent h-full">
|
|
<p class="truncate text-sm">{{ narrator }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
narrator: String
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.narratorSearchCardContent {
|
|
width: calc(100% - 40px);
|
|
height: 40px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
</style> |