Skip to content

Commit

Permalink
refactor: update css object name
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Jan 5, 2025
1 parent 359ab9c commit e31b98e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Blog/BlogPostThumbnail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function BlogPostThumbnail({ title, date, img, link, ...props }: Thumbnai
<section css={gradientCss} />
<Image css={imageCss} src={img} alt={title} fill quality={100} />

<div css={contentCss}>
<div css={wrapperCss}>
<div>
<h1 css={titleCss} dangerouslySetInnerHTML={{ __html: title as string }} />
<h3 css={dateCss}>{date}</h3>
Expand Down Expand Up @@ -80,7 +80,7 @@ const articleCss = css`
}
`;

const contentCss = css`
const wrapperCss = css`
position: relative;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit e31b98e

Please sign in to comment.