UI: Globale 90%-Breite Umstellung auf .page-container (Stable + Nightly)

This commit is contained in:
vibe-bot 2025-08-09 16:36:22 +02:00
parent 0a88528550
commit e1d5c9eaa6
2 changed files with 3 additions and 1 deletions

View file

@ -237,7 +237,7 @@ export default function App() {
return (
<ErrorBoundary>
<div className="container mx-auto" data-theme={theme}>
<div className="page-container" data-theme={theme}>
{/* Floating Broccoli for 420 Theme */}
{theme === '420' && showBroccoli && (
<>

View file

@ -302,6 +302,8 @@ body {
[data-theme="dark"] .gradient-text { background: -webkit-linear-gradient(45deg,#e0e0e0,#a0a0a0); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent }
.container { width: 90vw; max-width: none; margin: 0 auto; padding: 28px; }
/* Eigener Container ohne Tailwind-Kollision */
.page-container { width: 90vw; max-width: none; margin: 0 auto; padding: 28px; }
/* Nightly Build: volle Breite (mind. 90% der Anzeige), kein max-width-Limit */
[data-build="nightly"] .container {