Skip to content

Commit

Permalink
fix(style): fix resume section not showing header when clicked on navbar
Browse files Browse the repository at this point in the history
scroll-m-14 placed in background classname didn't work for some reason. works in projects.tsx
  • Loading branch information
Aeonoi committed Oct 25, 2024
1 parent 26e9c10 commit 19d897b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/resume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import Background from "./background";

const Resume: React.FC = () => {
return (
<main id="resume" className="animate-fadeIn ">
<Background styles="h-screen scroll-m-14">
<main id="resume" className="animate-fadeIn scroll-m-14">
<Background styles="h-screen">
<p className="text-5xl items-center text-center text-black">Resume</p>
<div className="grid grid-cols-1 lg:grid-cols-2">
<div className="hidden lg:flex">
Expand Down

0 comments on commit 19d897b

Please sign in to comment.