update: chips gap, add divider on mobile

This commit is contained in:
MTG2000
2022-10-03 21:35:06 +03:00
parent 4981fdd35b
commit 43fec5cc85
2 changed files with 2 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ export default function CapabilitiesCard({ capabilities }: Props) {
{capabilities.length === 0 && <>
<p className="text-gray-700 text-body4">No capabilities added</p>
</>}
<div className="flex flex-wrap gap-8 md:gap-16">
<div className="flex flex-wrap gap-8">
{capabilities.map(cap => <Badge key={cap.id} size='sm'>{cap.icon} {cap.title}</Badge>)}
</div>
</div>

View File

@@ -100,6 +100,7 @@ export default function ProjectPage() {
<hr className="bg-gray-100" />
<StoriesCard onlyMd stories={[]} />
<TournamentsCard onlyMd tournaments={[]} />
<hr className="bg-gray-100" />
<SimilarProjectsCard id={project.id} />
</main>
</>