Skip to content

Commit

Permalink
set the new UI
Browse files Browse the repository at this point in the history
  • Loading branch information
nmewada01 committed Jan 2, 2023
1 parent 87a69a6 commit ef811cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
rel="icon"
href="https://img.icons8.com/fluency/2x/microsoft-todo-2019.png"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
Expand Down
4 changes: 4 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* {
font-family: "Poppins", sans-serif;
}

.App {
text-align: center;
}
Expand Down
1 change: 1 addition & 0 deletions src/Components/TaskCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const TaskCard = ({ id, title, description, tags, subTasks, colorScheme }) => {
boxShadow="0px 10px 15px -3px rgba(0,0,0,0.1)"
margin="0.5rem auto 1rem"
padding="10px"
borderTop={"1px solid grey"}
>
<Flex justifyContent="space-between">
<Text>{title}</Text>
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Homepage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Homepage = () => {
}, [dispatch, tasks.length]);

return (
<Box width="100%" paddingTop="1rem" bg={"#436c89"}>
<Box width="100%" paddingTop="1rem" bg={"#4e4b58"}>
<Flex justifyContent="space-around">
{/* Todo */}
<Box
Expand Down

0 comments on commit ef811cd

Please sign in to comment.