We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a294a3a commit f45e0bfCopy full SHA for f45e0bf
src/components/blockquote-box.tsx
@@ -68,7 +68,7 @@ export function Blockquote({children}: BlockquoteProps){
68
const variant = bqType ? variantMap[bqType as BlockquoteVariant] : null;
69
const bqTitle = bqType ? bqType[0].toUpperCase() + bqType.slice(1) : ""
70
return !variant ? (
71
- <blockquote className="mt-3.5 border-l-2 pl-6 italic text-xs sm:text-sm md:text-base">{children}</blockquote>
+ <blockquote className="mt-3.5 border-l-2 pl-6 italic text-sm md:text-base">{children}</blockquote>
72
) : (
73
<div aria-label={bqTitle} className={cn(
74
"mt-3.5 border-2 rounded-md shadow-sm transition-all duration-200 hover:shadow-md py-5 px-4 [&>*]:my-0 space-y-2 flex flex-col items-start",
0 commit comments