fix(layout): Use standard Tailwind container usage to fix truncation
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

docs(about): Update footer quote
This commit is contained in:
fullsizemalt 2025-12-21 00:50:43 -08:00
parent 5040614d4b
commit 6ae609985e
3 changed files with 2 additions and 31 deletions

View file

@ -88,7 +88,7 @@ export default function AboutPage() {
{/* Footer Note */} {/* Footer Note */}
<section className="text-center pt-8 border-t"> <section className="text-center pt-8 border-t">
<p className="text-sm text-muted-foreground italic"> <p className="text-sm text-muted-foreground italic">
"The music is the message, the archive is the home." "Built by the flock, for the flock."
</p> </p>
</section> </section>
</div> </div>

View file

@ -120,30 +120,4 @@
body { body {
@apply bg-background text-foreground; @apply bg-background text-foreground;
} }
}
/* Container constraints for large screens */
@layer utilities {
.container {
width: 100% !important;
max-width: 1280px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
}
@media (min-width: 640px) {
.container {
padding-left: 2rem !important;
padding-right: 2rem !important;
}
}
@media (min-width: 1024px) {
.container {
padding-left: 4rem !important;
padding-right: 4rem !important;
}
} }

View file

@ -26,10 +26,7 @@ export default function RootLayout({
<AuthProvider> <AuthProvider>
<PreferencesProvider> <PreferencesProvider>
<Navbar /> <Navbar />
<main <main className="flex-1 w-full max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
className="container py-6 flex-1"
style={{ maxWidth: '1280px', marginLeft: 'auto', marginRight: 'auto', paddingLeft: '1rem', paddingRight: '1rem' }}
>
{children} {children}
</main> </main>
<Footer /> <Footer />