Skip to content

Commit

Permalink
fix menu width
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcatcancode committed Dec 6, 2023
1 parent 739f77b commit 0fcd76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Header() {
return (
<header className="z-[999] relative">
<motion.div
className="fixed top-0 left-1/2 h-[4.5rem] w-full rounded-none border border-white border-opacity-40 bg-white bg-opacity-80 shadow-lg shadow-black/[0.03] backdrop-blur-[0.5rem] sm:top-6 sm:h-[3.25rem] sm:w-[42rem] sm:rounded-full dark:bg-gray-950 dark:border-black/40 dark:bg-opacity-75"
className="fixed top-0 left-1/2 h-[4.5rem] w-full rounded-none border border-white border-opacity-40 bg-white bg-opacity-80 shadow-lg shadow-black/[0.03] backdrop-blur-[0.5rem] sm:top-6 sm:h-[3.25rem] sm:w-[36rem] sm:rounded-full dark:bg-gray-950 dark:border-black/40 dark:bg-opacity-75"
initial={{ y: -100, x: "-50%", opacity: 0 }}
animate={{ y: 0, x: "-50%", opacity: 1 }}
></motion.div>
Expand Down
4 changes: 2 additions & 2 deletions lib/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const projectsData = [
title: "FloHockey.tv",
description:
"Developed league & teams features so hockey fans have an ESSENTIAL destination to enjoy their favorite sport.",
tags: ["Node.js", "SSR", "A/B Test", "Server Driven UI", "Storybook", "TypeScript", "Jest", "Cypress", "JavaScript Framework"],
tags: ["Node.js", "SSR", "A/B Test", "Server Driven UI", "Storybook", "TypeScript", "Jest", "Cypress"],
imageUrl: floHockeyImg,
},
{
Expand All @@ -120,7 +120,7 @@ export const projectsData = [
title: "Payment Processing",
description:
"I worked on an agile team to deliver a more flexible payment processing platform to a luxury travel company.",
tags: ["JavaScript", "ASP.NET Web Api", "Agile Scrum", "Git"],
tags: ["Angular", "ASP.NET Web Api", "Agile Scrum", "Git"],
imageUrl: inspiratoImg,
}
] as const;
Expand Down

0 comments on commit 0fcd76c

Please sign in to comment.