Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/providers.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* Root application layout wrapper */

.appRoot {
min-height: 100vh;
background-color: var(--bgColor-default);
}
3 changes: 2 additions & 1 deletion src/app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ import { DebugProvider } from '@/contexts/debug-context';
// Import only the Primer CSS that we need for faster load times
import '@primer/css/dist/primer.css';
import { BaseStyles, ThemeProvider } from '@primer/react';
import styles from './providers.module.css';

export function Providers({ children }: { children: React.ReactNode }) {
return (
<ThemeProvider colorMode="auto">
<DebugProvider>
<BreadcrumbProvider>
<BaseStyles>
<div style={{ minHeight: '100vh', backgroundColor: 'var(--bgColor-default)' }}>
<div className={styles.appRoot}>
{children}
<AIActivityPanel />
</div>
Expand Down
Loading