글쓰기 헤더 모드 전환·미디어 검색, Update 시 발행일 유지, 설정 카드 편집/저장 분리, 인용·인라인 코드 스타일 반영. Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
554 B
Vue
22 lines
554 B
Vue
<script setup>
|
|
defineProps({
|
|
variant: {
|
|
type: String,
|
|
default: 'default'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<blockquote
|
|
class="prose-blockquote mb-2.5 text-[15px] leading-8 text-[var(--site-text)]"
|
|
:class="variant === 'alt'
|
|
? 'rounded-[14px] border border-[var(--site-line)] bg-[var(--site-panel)] px-6 py-5 italic'
|
|
: 'rounded-[10px] border-l-2 border-[#FF1A75] bg-[color-mix(in_srgb,#FF1A75_10%,#ffffff)] px-5 py-4 font-medium'"
|
|
>
|
|
<span class="whitespace-pre-line">
|
|
<slot />
|
|
</span>
|
|
</blockquote>
|
|
</template>
|