summaryrefslogtreecommitdiff
path: root/makima
diff options
context:
space:
mode:
Diffstat (limited to 'makima')
-rw-r--r--makima/frontend/src/routes/templates.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/makima/frontend/src/routes/templates.tsx b/makima/frontend/src/routes/templates.tsx
index ce944a8..15bf95c 100644
--- a/makima/frontend/src/routes/templates.tsx
+++ b/makima/frontend/src/routes/templates.tsx
@@ -96,7 +96,7 @@ export default function TemplatesPage() {
// Show loading state
if (authLoading) {
return (
- <div className="min-h-screen flex items-center justify-center">
+ <div className="relative z-10 min-h-screen flex items-center justify-center bg-[#0a1628]">
<div className="text-[#75aafc] font-mono text-sm animate-pulse">
Loading...
</div>
@@ -107,7 +107,7 @@ export default function TemplatesPage() {
// Editor view
if (editingTemplate) {
return (
- <div className="min-h-screen">
+ <div className="relative z-10 min-h-screen bg-[#0a1628]">
<Masthead />
<main className="max-w-4xl mx-auto px-4 py-6">
<TemplateEditor
@@ -121,7 +121,7 @@ export default function TemplatesPage() {
}
return (
- <div className="min-h-screen">
+ <div className="relative z-10 min-h-screen bg-[#0a1628]">
<Masthead />
<main className="max-w-6xl mx-auto px-4 py-6">
{/* Header */}