refactor: fix h1 heading overlapping
This commit is contained in:
parent
4a59ddb023
commit
66e8ca97d5
3 changed files with 3 additions and 3 deletions
|
@ -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>
|
<small>
|
||||||
{/* Post tags */}
|
{/* Post tags */}
|
||||||
|
|
|
@ -8,7 +8,7 @@ h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
@apply text-5xl;
|
@apply text-5xl leading-[3.5rem];
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
|
|
|
@ -33,7 +33,7 @@ const Home: FC = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className="mb-8 text-5xl">developomp's Portfolio</h1>
|
<h1 className="mb-8">developomp's Portfolio</h1>
|
||||||
<hr />
|
<hr />
|
||||||
<div className="my-4 flex flex-wrap">{skills}</div>
|
<div className="my-4 flex flex-wrap">{skills}</div>
|
||||||
<div className="projects">{projects}</div>
|
<div className="projects">{projects}</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue