refactor: fix h1 heading overlapping

This commit is contained in:
Kim, Jimin 2023-07-11 09:57:34 +09:00
parent 4a59ddb023
commit 66e8ca97d5
3 changed files with 3 additions and 3 deletions

View file

@ -69,7 +69,7 @@ export default function Page() {
/>
)}
<h1 className="mb-4 leading-10">{pageData.title}</h1>
<h1 className="mb-4">{pageData.title}</h1>
<small>
{/* Post tags */}

View file

@ -8,7 +8,7 @@ h6 {
}
h1 {
@apply text-5xl;
@apply text-5xl leading-[3.5rem];
}
h2 {

View file

@ -33,7 +33,7 @@ const Home: FC = () => {
return (
<>
<h1 className="mb-8 text-5xl">developomp's Portfolio</h1>
<h1 className="mb-8">developomp's Portfolio</h1>
<hr />
<div className="my-4 flex flex-wrap">{skills}</div>
<div className="projects">{projects}</div>