Skip to content

Commit

Permalink
Merge branch 'master' into archive
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator authored Mar 19, 2024
2 parents d839d84 + b640fef commit 7f59c55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Navbar/navDrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const NavDrop = forwardRef((props, ref)=> {
const {setDrop}=props;
const [show, setShow] = useState(null);
return (
<div ref ={ref} className='absolute ml-[-16px] top-16 w-full bg-[#1B1130]'>
<div className='flex flex-col p-4 pb-8 w-full'>
<div ref ={ref} className='absolute ml-[-20px] top-16 w-full bg-[#1B1130]'>
<div className='flex flex-col p-5 pb-8 w-full'>
{links.map((link) => {
return (
<Link href={link.ref} key={link.title}>
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function Navbar() {
return (
<div className='flex justify-center items-center sticky top-0 z-[99] text-white'>
<div className='w-[1131px]'>
<div className='flex justify-between h-[75px] w-full items-center'>
<div className='p-5 flex justify-between h-[75px] w-full items-center'>
<div className='flex items-center sm:justify-between sm:w-full'>
<Link href='/'>
<div className='flex items-center cursor-pointer w-[120px]'>
Expand Down

0 comments on commit 7f59c55

Please sign in to comment.