Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
color
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Oct 4, 2023
1 parent 57fce30 commit d8f306e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/navigation/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Sidebar = ({
</svg>
</button>

<ul className="sidebar-nav text-center leading-relaxed text-xl">
<ul className="sidebar-nav text-center leading-relaxed text-xl text-slate-50">
<li>
<Link href="/" onClick={toggle}><p>Home</p></Link>
</li>
Expand Down
1 change: 0 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Navigation from "./components/navigation";
import './globals.css'
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
Expand Down
2 changes: 2 additions & 0 deletions app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ export const NextAuthProvider = ({ children }: Props) => {
return (
<SessionProvider>
<Navigation />
<div className="bg-gray-100">
{children}
</div>
</SessionProvider>
)
};
2 changes: 1 addition & 1 deletion app/sandbox/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export default function Page() {
return (
<div className="flex flex-col items-center justify-center min-h-screen py-4">
<main className="flex flex-col flex-1 m-4">
<div className="border-b-2 dark:bg-gray-800 shadow p-4 m-2">
<div className="border-b-2 bg-white dark:bg-gray-800 shadow p-4 m-2">
<Dialog>
<DialogTrigger className="rounded-full bg-blue-600 p-2 text-slate-50">Delete Sandbox</DialogTrigger>
<DialogContent>
Expand Down

0 comments on commit d8f306e

Please sign in to comment.