Files
boris/src/styles/base/global.css
Gigi 2a422fbeb9 fix(theme): use darker background for app body
- Change body background from --color-bg to --color-bg-subtle
- Creates visual depth and hierarchy between app bg and content
- Content panels now stand out more against the background
2025-10-14 10:05:10 +02:00

31 lines
568 B
CSS

/* Global element styles and app container (Tailwind-compatible) */
/* Body - keep only app-specific overrides */
body {
background: var(--color-bg-subtle);
color: var(--color-text);
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
max-width: 100vw;
}
body.mobile-sidebar-open {
overflow: hidden;
position: fixed;
width: 100%;
}
/* App loading states */
.loading {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
color: var(--color-text);
}