Skip to content

Commit

Permalink
fix: Safari broken view
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Nov 21, 2023
1 parent 677b026 commit baebfb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/ui/logo-carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ export default function LogoCarousel() {
src: YSK,
alt: "Yüksek Seçim Kurulu",
noFilter: true,
className: "w-full h-[72px]",
className: "w-auto h-[72px]",
},
{
src: KiyiEmniyeti,
alt: "Kıyı Emniyeti Genel Müdürlüğü",
noFilter: true,
className: "w-full h-[72px]",
className: "w-auto h-[72px]",
},
{ src: GAMER, alt: "GAMER, İçişleri Bakanlığı" },
{ src: HAVELSAN, alt: "HAVELSAN" },
Expand Down Expand Up @@ -80,7 +80,7 @@ function LogoImage({
src={src}
alt={alt}
className={cn(
!noFilter && "w-full brightness-0 invert-[25%] dark:invert-[75%]",
!noFilter && "w-auto brightness-0 invert-[25%] dark:invert-[75%]",
className
)}
quality={100}
Expand Down

0 comments on commit baebfb5

Please sign in to comment.