koel/docs/.vitepress/components/CaptionedImage.vue

34 lines
515 B
Vue
Raw Normal View History

2024-03-17 18:28:39 +00:00
<script lang="ts" setup>
defineOptions({
inheritAttrs: false
})
</script>
<template>
<figure class="rounded-md">
<img class="border-0 rounded-0" v-bind="$attrs" />
<figcaption>
<slot />
</figcaption>
</figure>
</template>
2024-04-04 20:13:35 +00:00
<style scoped lang="postcss">
2024-03-17 18:28:39 +00:00
figure {
margin: 1.5rem 0;
overflow: hidden;
img {
margin: 0;
}
figcaption {
background: rgb(66 141 185 / 5%);
text-align: center;
font-size: .85rem;
padding: .5rem;
font-style: italic;
}
}
</style>