Skip to content

Commit f45e0bf

Browse files
authored
Changed Text size
1 parent a294a3a commit f45e0bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/blockquote-box.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export function Blockquote({children}: BlockquoteProps){
6868
const variant = bqType ? variantMap[bqType as BlockquoteVariant] : null;
6969
const bqTitle = bqType ? bqType[0].toUpperCase() + bqType.slice(1) : ""
7070
return !variant ? (
71-
<blockquote className="mt-3.5 border-l-2 pl-6 italic text-xs sm:text-sm md:text-base">{children}</blockquote>
71+
<blockquote className="mt-3.5 border-l-2 pl-6 italic text-sm md:text-base">{children}</blockquote>
7272
) : (
7373
<div aria-label={bqTitle} className={cn(
7474
"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

Comments
 (0)