From 0616cde993863aa19684437dbe3723ae0edbae6a Mon Sep 17 00:00:00 2001 From: dm1sh Date: Sun, 17 Oct 2021 18:45:53 +0300 Subject: [PATCH] Fixed addTask bar background color issues --- src/App.tsx | 12 ++++++++++-- src/components/AddTask.tsx | 2 ++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index cce0cd3..d92d5f4 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,8 +10,16 @@ import store from "./store"; export const App = () => { return ( - } title="My tasks" content={} /> - + } + title="My tasks" + content={ + <> + + + + } + /> ); }; diff --git a/src/components/AddTask.tsx b/src/components/AddTask.tsx index 15c7382..6eeca00 100644 --- a/src/components/AddTask.tsx +++ b/src/components/AddTask.tsx @@ -51,6 +51,8 @@ export const AddTask: React.FC = () => { top: (theme) => "-" + theme.spacing(2), left: 0, background: (theme) => theme.palette.background.paper, + backgroundImage: + "linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15))", }} />