barn doors

This commit is contained in:
Tejas Panchal
2026-02-23 01:03:21 +05:30
parent ce3df78d8a
commit ca41ff55b0
2 changed files with 1 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ function App() {
return ( return (
<HelmetProvider> <HelmetProvider>
<HomeInfoProvider> <HomeInfoProvider>
<div className="app-container px-4 lg:px-10 flex flex-col min-h-screen"> <div className={`app-container ${isSplashScreen ? "" : "px-4 lg:px-10"} flex flex-col min-h-screen`}>
<main className="content max-w-[2048px] mx-auto w-full flex-grow flex flex-col"> <main className="content max-w-[2048px] mx-auto w-full flex-grow flex flex-col">
{!isSplashScreen && <Navbar />} {!isSplashScreen && <Navbar />}
<div className="flex-grow"> <div className="flex-grow">

View File

@@ -34,14 +34,12 @@ html {
@media (max-width: 768px) { @media (max-width: 768px) {
.splash-container { .splash-container {
background-size: auto 100vh;
background-position: center center; background-position: center center;
} }
} }
@media (max-width: 480px) { @media (max-width: 480px) {
.splash-container { .splash-container {
background-size: auto 100%;
padding: 0 15px; padding: 0 15px;
} }
} }