Skip to content

Commit

Permalink
fix: overflow aos
Browse files Browse the repository at this point in the history
  • Loading branch information
AtqiyaHaydar committed Jun 26, 2024
1 parent 7e18bb7 commit b1fa239
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const Header = () => {
}, []);

return (
<header className={`fixed z-20 w-full top-0 h-[80px] py-4 flex justify-between items-center transition-sll duration-300 ${scrolled ? 'bg-white/50 border-b border-gold backdrop-blur-md' : 'bg-transparent'}`} data-aos="fade-down">
<div className='wrapper w-full flex justify-between items-center'>
<header className={`fixed z-20 w-full top-0 h-[80px] py-4 flex justify-between items-center transition-all duration-300 ${scrolled ? 'bg-white/50 border-b border-gold backdrop-blur-md' : 'bg-transparent'}`}>
<div className='wrapper flex justify-between items-center'>
<div className='flex gap-x-8 items-center'>
<Image
src={Logo}
Expand Down
2 changes: 1 addition & 1 deletion components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Hero = () => {
<Image
src={Danielle}
alt="Model"
className='-z-20 max-h-[500px] max-w-[500px] md:h-[750px] md:w-[750px] md:translate-x-0 translate-x-[-60px]'
className='-z-20 md:max-h-[500px] md:max-w-[500px] md:h-[750px] md:w-[750px] md:translate-x-0 translate-x-[-60px]'
/>
</div>
</div>
Expand Down

0 comments on commit b1fa239

Please sign in to comment.