fix: remove full height for webkit compatibility

This commit is contained in:
Bart van der Braak 2024-01-15 12:51:45 +01:00
parent d204c27e70
commit d0d7dafd12
2 changed files with 2 additions and 2 deletions

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} />