mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-27 17:41:21 +00:00
fix: remove full height for webkit compatibility
This commit is contained in:
parent
d204c27e70
commit
d0d7dafd12
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
let { description, enhanced, logo, name, tagLine } = toolItem;
|
let { description, enhanced, logo, name, tagLine } = toolItem;
|
||||||
</script>
|
</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">
|
<Card.Header class="flex flex-row items-center justify-between space-y-0 pb-1">
|
||||||
<div>
|
<div>
|
||||||
<Card.Title tag="h2" class="text-2xl font-bold">
|
<Card.Title tag="h2" class="text-2xl font-bold">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
import tools from '$lib/content/tools';
|
import tools from '$lib/content/tools';
|
||||||
</script>
|
</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}
|
{#each tools as tool}
|
||||||
<a href={tool.url} target="_blank">
|
<a href={tool.url} target="_blank">
|
||||||
<Tools.Item toolItem={tool} />
|
<Tools.Item toolItem={tool} />
|
||||||
|
|
Loading…
Reference in a new issue