fix: fixing some QA issues

- change rows shown on products page & change the api
- restyle sort by
- rebuild navigation menus
- fix issues with donation stats & donate card
- update products header link & date of hackathon
This commit is contained in:
MTG2000
2022-05-27 10:50:25 +03:00
parent 5ad84a7357
commit e49b0dafe6
18 changed files with 219 additions and 165 deletions

View File

@@ -11,7 +11,7 @@ export default function ProjectCardMini({ project, onClick }: Props) {
return (
<div
className="bg-gray-25 select-none px-16 py-16 flex min-w-[296px] gap-16 border border-gray-200 rounded-10 hover:cursor-pointer hover:bg-gray-100"
className="bg-gray-25 select-none px-16 py-16 flex min-w-[296px] gap-16 border-2 border-gray-200 rounded-10 hover:cursor-pointer hover:bg-gray-100"
onClick={() => onClick(project.id)}
onKeyDown={e => e.key !== 'Enter' || onClick(project.id)}
tabIndex={0}