this styling is NOT final btw
This commit is contained in:
parent
7dfd583c7c
commit
44f71b670e
@ -7,16 +7,18 @@ const recipies = await client.collection("recipes").getFullList()
|
|||||||
---
|
---
|
||||||
|
|
||||||
<PageLayout>
|
<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">
|
<div class="grid gap-2 grid-cols-1 md:grid-cols-2 lg:grid-cols-3">
|
||||||
{
|
{
|
||||||
recipies.map(r => (
|
recipies.map(r => (
|
||||||
<OverviewCard recipe={r} />
|
<OverviewCard recipe={r} />
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</PageLayout>
|
</PageLayout>
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
html {
|
html {
|
||||||
@apply bg-white;
|
@apply bg-yellow-50;
|
||||||
@apply p-5;
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user