Skip to content

Commit d463f9d

Browse files
committed
fix: PostCardWhiteBgBig
1 parent 436286e commit d463f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/post-types/PostCardWhiteBgBig.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ export default function PostCardWhiteBgBig(props: PostCardWhiteBgBigProps) {
7171
{(!options?.hideDate || !options?.hideAuthor) && (
7272
<div className="flex justify-center gap-2 p-2">
7373
{!options?.hideDate && date && (
74-
<div className="text-sm opacity-80">
74+
<div className="text-[0.8rem] opacity-80 flex flex-row items-center gap-2 justify-center">
7575
<AiOutlineClockCircle />
7676
<DateComponent dateString={date} />
7777
</div>
7878
)}
7979
{!options?.hideAuthor && authors?.length && (
80-
<div className="flex gap-1 text-sm opacity-80">
80+
<div className="flex gap-1 text-sm opacity-80 text-emerald-800">
8181
{authors?.length > 1 && (
8282
<>
8383
<i className="icon-users-outline"></i>

0 commit comments

Comments
 (0)