Add Tailwind CSS (#425)

* Install and configure tailwind

* Fix style issues
This commit is contained in:
Misode
2023-10-02 23:38:18 +02:00
committed by GitHub
parent 427294ad3b
commit f71e44f91b
24 changed files with 1025 additions and 138 deletions

View File

@@ -12,7 +12,7 @@ interface Props {
export function ToolGroup({ title, titleIcon, link, children }: Props) {
return <div class="tool-group">
{link === undefined
? <div class="tool-card"><h3>{title}</h3></div>
? <div class="tool-card"><h3 class="text-[1.17em]">{title}</h3></div>
: <ToolCard {...{ title, titleIcon, link}} />
}
{children && <div class="tool-body">