Skip to content

Commit

Permalink
fix prod style bug
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed Dec 14, 2023
1 parent ea628db commit 0faab24
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const Header = () => {
</Link>
</div>
<div className="navbar-center hidden lg:flex">
<ul className="menu menu-horizontal px-1 flex gap-2">
<ul className="flex gap-6 py-4">
{menuLinks.map(({ label, href }) => {
return (
<li key={href}>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/portfolio/SectionHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function SectionHeader({ title }: ISectionHeader) {
<div className="flex justify-center">
<h2
id={title}
className={`border border-base-content font-cubano text-5xl md:text-6xl text-center mb-14 w-full rounded-2xl py-2`}
className={`border border-base-content font-cubano text-5xl md:text-5xl text-center mb-14 w-full rounded-2xl pt-2 pb-3`}
>
{title}
</h2>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/portfolio/sections/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function Landing() {
Matt Pereira
</h1>
<h2 className="text-3xl md:text-4xl xl:text-5xl font-cubano mb-3 text-center lg:text-start text-base-content">
Web Developer
Software Engineer
</h2>
<div className="flex justify-center lg:justify-start">
{socials.map(({ url, icon, id }) => (
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/portfolio/sections/Skills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function Skills() {
{skills.map(({ category, items }) => (
<div key={category} className="mb-5 text-start ">
<div>
<h5 className="text-4xl font-inter font-bold mb-10">{category}</h5>
<h5 className="text-3xl font-inter font-bold mb-10">{category}</h5>
<ul className="text-2xl">
{items.map(item => (
<li key={item.title} className="text-gothic flex gap-4 mb-6 items-center">
Expand Down

1 comment on commit 0faab24

@vercel
Copy link

@vercel vercel bot commented on 0faab24 Dec 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

matt-pereira – ./

matt-pereira-git-main-mattpereira.vercel.app
matt-pereira-mattpereira.vercel.app
matt-pereira.vercel.app

Please sign in to comment.