Skip to content

Commit e356bc7

Browse files
committed
chore: lint
1 parent cfc5aaf commit e356bc7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default function Page() {
8888

8989
<Header monaco={monacoRef.current} />
9090

91-
<main className="h-full w-full">
91+
<main className="size-full">
9292
<DiffEditor
9393
options={{
9494
originalEditable: true,

src/components/GitHubInfo.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import logoGithub from "@iconify/icons-carbon/logo-github";
33

44
function GitHubInfo() {
55
return (
6-
<div className="ml-8 flex h-[18px] w-[18px] justify-center">
6+
<div className="ml-8 flex size-[18px] justify-center">
77
<a
88
href="https://github.com/Debbl/code-diff"
99
target="_blank"
1010
rel="noreferrer"
1111
>
12-
<Icon icon={logoGithub} className="h-[18px] w-[18px]" />
12+
<Icon icon={logoGithub} className="size-[18px]" />
1313
</a>
1414
</div>
1515
);

src/components/Header.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ const Header = ({ monaco }: IProps) => {
102102
});
103103
}}
104104
>
105-
<Icon className="h-[18px] w-[18px] cursor-pointer" icon={closeFilled} />
105+
<Icon className="size-[18px] cursor-pointer" icon={closeFilled} />
106106
</div>
107107

108-
<GitHubInfo className="ml-8 flex h-[18px] w-[18px] justify-center" />
108+
<GitHubInfo className="ml-8 flex size-[18px] justify-center" />
109109
</header>
110110
);
111111
};

0 commit comments

Comments
 (0)