Skip to content

Commit

Permalink
removed the css changes
Browse files Browse the repository at this point in the history
  • Loading branch information
arpitkuriyal committed Oct 28, 2024
1 parent d6a22af commit e24aba5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/About/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function About() {
<a className='flex justify-center ' href='/pdf/conf-2024.pdf' download={`conf ${new Date().getFullYear()}.pdf`} >
<Button overlay={true} className='w-[240px] border'>
<div className='flex gap-2 justify-center items-center'>
<Image src="/img/Download_icon.png" height={20} width={20} alt='Download-icon' style={{objectFit:"contain"}} />
<Image src="/img/Download_icon.png" height={20} width={20} alt='Download-icon' objectFit='contain' />
<div>
Sponsorship prospectus
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Footer/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function Footer() {
<div className="container">
<div className="w-full flex justify-between items-center p-4 sm:flex-col sm:gap-3">
<Link href='/'>
<Image className="cursor-pointer" src="/img/logo.png" alt="company logo" height={0} width={0} style={{width:'150px', height: "auto" }}/>
<Image className="cursor-pointer" src="/img/logo.png" alt="company logo" width={150} height={42}/>
</Link>
<div className="sm:hidden">
{/* This div helps keep the text centered */}
Expand Down
2 changes: 1 addition & 1 deletion components/Navbar/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function Navbar() {
<div className='flex items-center sm:justify-between sm:w-full'>
<Link href='/'>
<div className='flex items-center cursor-pointer'>
<Image src='/img/logo.png' alt='conference logo' height={0} width={0} style={{width:'120px', height: "auto" }} />
<Image src='/img/logo.png' alt='conference logo' width={120} height={33} />
</div>
</Link>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/Sponsors/sponsors.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Sponsors({imgs}) {
<Image src="/img/graviteeio.svg" alt='financial sponsor' width={250} height={50} />
</div>
<div className="w-[240px] h-[70px]">
<Image src="/img/postman.png" alt='financial sponsor' height={0} width={0} style={{width:'235px', height: "auto" }} />
<Image src="/img/postman.png" alt='financial sponsor' width={235} height={70} />
</div>
</div>
</div>
Expand Down

0 comments on commit e24aba5

Please sign in to comment.