Skip to content

Commit 29ce288

Browse files
committed
chore: apply prettier
1 parent 791cb56 commit 29ce288

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/Balloon.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const Balloon: FunctionComponent<Props> = ({ className = "", children }) => {
1111
<div
1212
className={classnames(
1313
'relative rounded bg-gray-800 p-4 text-gray-100 after:absolute after:left-[50%] after:top-full after:-ml-[6px] after:border-x-[12px] after:border-b-[12px] after:border-t-[12px] after:border-x-transparent after:border-b-transparent after:border-t-gray-800 after:content-[""] dark:bg-white dark:text-gray-800 dark:after:border-t-white',
14-
className
14+
className,
1515
)}
1616
>
1717
{children}

src/components/Hello.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Hello: FunctionComponent<Props> = () => {
3535
<img
3636
className={classnames(
3737
"origin-center rounded-full bg-gray-100 transition-transform duration-200 dark:bg-gray-700",
38-
{ "rotate-[10deg]": greeted, "rotate-0": !greeted }
38+
{ "rotate-[10deg]": greeted, "rotate-0": !greeted },
3939
)}
4040
height="100"
4141
src={`https://www.gravatar.com/avatar/${gravatarHash}?s=200`}
@@ -49,7 +49,7 @@ const Hello: FunctionComponent<Props> = () => {
4949
{
5050
"opacity-0": !initiated || greeted,
5151
"opacity-100": initiated && !greeted,
52-
}
52+
},
5353
)}
5454
>
5555
<a className="group mx-1 block" {...linkedinAttr}>
@@ -67,7 +67,7 @@ const Hello: FunctionComponent<Props> = () => {
6767
{
6868
"translate-y-0 opacity-100": greeted,
6969
"pointer-events-none translate-y-1 opacity-0": !greeted,
70-
}
70+
},
7171
)}
7272
>
7373
<p>

0 commit comments

Comments
 (0)