slidev-theme-narduin/layouts/quote.vue

18 lines
283 B
Vue
Raw Permalink Normal View History

2024-12-13 14:30:22 +01:00
<template>
2024-12-16 21:25:03 +01:00
<div class="slidev-layout place-content-center">
2024-12-19 14:07:20 +01:00
<blockquote>
<slot name="quote" />
</blockquote>
2024-12-13 14:30:22 +01:00
<slot />
</div>
</template>
2024-12-19 14:07:20 +01:00
<style scoped>
blockquote {
padding: 0;
margin: var(--space-s) 0;
border: initial;
background: initial;
}
</style>