mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Format: update prettier configuration to use tailwind plugin
This commit is contained in:
@@ -32,12 +32,12 @@ const BreweryCard: FC<{ brewery: z.infer<typeof BreweryPostQueryResult> }> = ({
|
||||
<div className="card-body justify-between">
|
||||
<div>
|
||||
<Link href={`/breweries/${brewery.id}`} className="link-hover link">
|
||||
<h2 className="text-xl truncate font-bold lg:text-2xl">{brewery.name}</h2>
|
||||
<h2 className="truncate text-xl font-bold lg:text-2xl">{brewery.name}</h2>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="flex items-end justify-between">
|
||||
<div className="w-9/12">
|
||||
<h3 className="text-lg font-semibold lg:text-xl truncate">
|
||||
<h3 className="truncate text-lg font-semibold lg:text-xl">
|
||||
{brewery.location.city},{' '}
|
||||
{brewery.location.stateOrProvince || brewery.location.country}
|
||||
</h3>
|
||||
|
||||
Reference in New Issue
Block a user