Skip to content

Commit

Permalink
fix: navbar final
Browse files Browse the repository at this point in the history
  • Loading branch information
rakun256 committed Oct 14, 2024
1 parent 9e17187 commit a1f218b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from 'react';

export default function Navbar() {
return (
<div className='fixed z-10 flex w-full items-center border-b-[1px] border-solid border-black bg-primary-dark p-8 text-primary-light justify-center'>
<p className='hidden flex-1 text-left text-lg md:block'>
<div className='fixed z-10 flex w-full items-center justify-between border-b-[1px] border-solid border-black bg-primary-dark p-8 text-primary-light'>
<p className='hidden w-1/5 text-left text-lg md:block whitespace-normal break-words'>
Yıldız Teknik Üniversitesi
</p>
<a
Expand All @@ -15,10 +15,10 @@ export default function Navbar() {
</a>
<a
href='https://maps.app.goo.gl/rfNDFw7kpkF6syJU8'
className='ease hidden flex-1 text-right text-lg transition-all hover:scale-[1.1] active:scale-[0.8] md:block'
className='ease hidden w-1/5 text-right text-lg transition-all hover:scale-[1.1] active:scale-[0.8] md:block whitespace-normal break-words'
target='_blank'
>
Davutpaşa Kampüsü, Tarihi Hamam
Davutpaşa Kampüsü <br/> Tarihi Hamam
</a>
</div>
);
Expand Down

0 comments on commit a1f218b

Please sign in to comment.