[PIE-6] Add first (non-final) (temporary-ish) stylings #5

Merged
breadone merged 12 commits from PIE-6 into main 2025-08-12 23:39:33 +12:00
2 changed files with 11 additions and 10 deletions
Showing only changes of commit 44f71b670e - Show all commits

View File

@ -7,16 +7,18 @@ const recipies = await client.collection("recipes").getFullList()
---
<PageLayout>
<p class="text-3xl font-medium">Recipie</p>
<p class="w-full bg-yellow-100 p-5 text-3xl pb-4 font-medium">Recipie</p>
What would you like today?
<div id="content" class="p-5">
<p class="pb-2">What would you like today?</p>
<div class="grid md:gap-2 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
{
recipies.map(r => (
<OverviewCard recipe={r} />
))
}
<div class="grid gap-2 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
{
recipies.map(r => (
<OverviewCard recipe={r} />
))
}
</div>
</div>
</PageLayout>

View File

@ -1,6 +1,5 @@
@import "tailwindcss";
html {
@apply bg-white;
@apply p-5;
@apply bg-yellow-50;
}