Update components/ColorCard.tsx

Co-authored-by: zero734kr <zero734kr@gmail.com>
This commit is contained in:
Junseo Park 2021-04-17 11:18:47 +09:00 committed by GitHub
parent 7056c1ffa9
commit 06b378dfee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,8 @@ const ColorCard = ({ header, first, second, className }: ColorCardProps): JSX.El
<div className={`rounded-lg p-10 ${className} shadow-lg`}>
<h2 className='text-2xl font-bold'>{header}</h2>
<p className='opacity-80'>
{first} <br />
{first}
<br />
{second}
</p>
</div>