Skip to content

Commit

Permalink
Merge pull request #37 from Ryczko/feature/new_date_picker
Browse files Browse the repository at this point in the history
new date picker + time picker + minor sign out button too big fix
  • Loading branch information
Ryczko authored May 12, 2022
2 parents 91040b9 + c118221 commit ad5018f
Show file tree
Hide file tree
Showing 10 changed files with 303 additions and 321 deletions.
138 changes: 138 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"firebase": "^9.6.9",
"framer-motion": "^6.3.0",
"react": "^17.0.2",
"react-datepicker": "^4.7.0",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-hot-toast": "^2.2.0",
Expand Down Expand Up @@ -58,6 +59,7 @@
]
},
"devDependencies": {
"@types/react-datepicker": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
Expand Down
2 changes: 1 addition & 1 deletion src/Components/BurgerMenu/BurgerMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const BurgerMenu = ({ isOpen, children }: BurgerMenuProps) => {
initial="closed"
variants={variants}
id="burger_menu"
className="fixed shadow-md left-0 z-10 flex flex-col items-center justify-center w-screen top-20 bg-zinc-100 md:hidden"
className="fixed pb-2 shadow-md left-0 z-10 flex flex-col items-center justify-center w-screen top-20 bg-zinc-100 lg:hidden"
>
{children}
</motion.div>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/DataCard/DataCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Props = {

export default function DataCard({ title, value }: Props) {
return (
<div className="px-6 m-1 py-2 w-[200px] bg-white rounded-lg border border-gray-200 shadow-md">
<div className="px-6 m-1 py-2 w-[200px] bg-white rounded-lg border border-zinc-200 shadow-md">
<h3 className="font-semibold mb-1">{title}</h3>
{value}
</div>
Expand Down
Loading

0 comments on commit ad5018f

Please sign in to comment.