Merge pull request #199 from bartvdbraak/fix/webkit-flex

Fix full height issue for webkit compatibility
This commit is contained in:
Bart van der Braak 2024-01-15 13:22:43 +01:00 committed by GitHub
commit 4ffd020ca6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View file

@ -38,8 +38,6 @@
class="font-medium underline underline-offset-4">GitHub</a
>
</div>
<Separator orientation="vertical" />
<div>Enhanced using LLMs</div>
</div>
</div>
</footer>

View file

@ -6,7 +6,7 @@
let { description, enhanced, logo, name, tagLine } = toolItem;
</script>
<Card.Root class="mb-4 inline-block h-full w-full hover:bg-muted/50">
<Card.Root class="mb-4 inline-block hover:bg-muted/50">
<Card.Header class="flex flex-row items-center justify-between space-y-0 pb-1">
<div>
<Card.Title tag="h2" class="text-2xl font-bold">

View file

@ -3,7 +3,7 @@
import tools from '$lib/content/tools';
</script>
<div class="columns-1 gap-4 md:columns-2 lg:columns-3">
<div class="w-full columns-1 gap-6 md:columns-2 lg:columns-3">
{#each tools as tool}
<a href={tool.url} target="_blank">
<Tools.Item toolItem={tool} />