Ordered list, 멀티라인/대체 인용구 문법을 추가하고 Prose 컴포넌트(리스트/인용/이미지/카드/임베드) 기본 스타일을 Thred 톤으로 통일했다. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
523 B
Vue
24 lines
523 B
Vue
<script setup>
|
|
defineProps({
|
|
href: {
|
|
type: String,
|
|
default: '#'
|
|
},
|
|
align: {
|
|
type: String,
|
|
default: 'left'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<p class="prose-button my-8" :class="{ 'text-center': align === 'center' }">
|
|
<NuxtLink
|
|
class="prose-button__link inline-flex items-center justify-center rounded-full bg-[var(--site-text)] px-5 py-2.5 text-sm font-semibold text-[var(--site-bg)] transition-opacity hover:opacity-80"
|
|
:to="href"
|
|
>
|
|
<slot />
|
|
</NuxtLink>
|
|
</p>
|
|
</template>
|