Logo Scaling Fix

This commit is contained in:
2025-04-12 21:08:43 -04:00
parent ca390db4e4
commit c7c45a6d08
2 changed files with 1 additions and 9 deletions

View File

@@ -16,13 +16,7 @@ export default function RootLayout({
<main suppressHydrationWarning={true}> <main suppressHydrationWarning={true}>
{!isMobile && !isSafari ? <NavBar /> : null} {!isMobile && !isSafari ? <NavBar /> : null}
<section className="min-h-screen max-w-screen space-x-2 gap-4 flex flex-col"> <section className="min-h-screen max-w-screen space-x-2 gap-4 flex flex-col">
<Image <img src="/drinkhappylogo.png" alt="Drink Happy Logo Image" className="h-auto mx-auto w-3/4 lg:w-1/4" />
src="/drinkhappylogo.png"
alt="Drink Happy Logo Image"
width={200}
height={200}
className="h-auto mx-auto w-1/4"
/>
{children} {children}
</section> </section>
{isMobile && isSafari ? ( {isMobile && isSafari ? (

View File

@@ -29,8 +29,6 @@ export default function RootLayout({
> >
<DeviceProvider> <DeviceProvider>
{children} {children}
</DeviceProvider> </DeviceProvider>
</body> </body>
</html> </html>