match more official stylings

This commit is contained in:
Daniel Avila 2023-03-05 13:31:12 -05:00
parent c8d8484d86
commit dae7f8d822
7 changed files with 37 additions and 22 deletions

View file

@ -12,13 +12,11 @@ const App = () => {
const { title } = useSelector((state) => state.convo);
useDocumentTitle(title);
// bg-color: #343541 instead of bg-gray-800
return (
<div className="flex h-screen">
<Nav />
<div className="flex h-full w-full flex-1 flex-col bg-gray-50 md:pl-[260px]">
<div className="transition-width relative flex h-full w-full flex-1 flex-col items-stretch overflow-hidden bg-white dark:bg-gray-800/90">
<div className="transition-width relative flex h-full w-full flex-1 flex-col items-stretch overflow-hidden bg-white dark:bg-gray-800">
<MobileNav />
{messages.length === 0 ? (
<Landing title={title} />