Skip to content

Commit

Permalink
feat: make portifolio/Header responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Dec 23, 2022
1 parent 2f976cc commit aa93919
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/portifolio/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ export function Header({ scrollPosition, maxScrollValue }: Props) {
}, [scrollPosition, maxScrollValue])

return (
<div className="flex justify-center items-center fixed bg-neutral-1000/80 backdrop-blur-lg w-full">
<nav className="content-w flex items-center justify-center py-6 relative">
<div className=" absolute left-0">
<div className="flex justify-center items-center fixed bg-neutral-1000/80 backdrop-blur-lg w-full z-50">
<nav className="content-w flex items-center justify-between md:justify-center gap-4 py-10 md:py-6 relative">
<div className="md:absolute left-0">
<a
href="#home"
className="text-blue-500 font-medium font-chivo-mono hover:cursor-pointer"
>
Mateus Felipe
</a>
</div>
<div className="flex items-center gap-4">
<div className="hidden md:flex items-center gap-4">
<a
href="#sobre-mim"
className={`${
Expand Down Expand Up @@ -68,7 +68,7 @@ export function Header({ scrollPosition, maxScrollValue }: Props) {
Contato
</a>
</div>
<div className="flex items-center gap-4 absolute right-0">
<div className="flex items-center gap-6 md:gap-4 md:absolute right-0">
<a
className="text-xl text-neutral-300 hover:text-neutral-50 hover:cursor-pointer"
href="https://linkedin.com/in/mateusfg"
Expand Down

0 comments on commit aa93919

Please sign in to comment.