set default body background to #000

This commit is contained in:
jeffvli 2025-09-22 18:24:04 -07:00
parent 6abdbd2f3e
commit 55e35e9b24
2 changed files with 2 additions and 1 deletions

View file

@ -12,7 +12,7 @@
<% } %> <% } %>
</head> </head>
<body> <body style="background-color: #000;">
<div id="root"> <div id="root">
<script type="module" src="main.tsx"></script> <script type="module" src="main.tsx"></script>
</div> </div>

View file

@ -5,6 +5,7 @@
grid-template-areas: 'sidebar . right-sidebar'; grid-template-areas: 'sidebar . right-sidebar';
grid-template-rows: 1fr; grid-template-rows: 1fr;
gap: 0; gap: 0;
background: var(--theme-colors-background);
} }
.main-content-container.shell { .main-content-container.shell {