feat(app): recipe ideas

This commit is contained in:
rektdeckard
2023-03-11 01:25:42 -07:00
parent 675c4fc364
commit 46ed0bc300
9 changed files with 248 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
.recipes {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
gap: 16px;
padding-block: 32px;
}
a.recipe {
position: relative;
color: initial;
padding: 16px;
display: grid;
place-items: center;
}
.recipe-linkout {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background-color: var(--soft);
border-radius: 8px;
z-index: 1;
opacity: 0;
transition: opacity 200ms ease;
}
.recipe-linkout:hover {
opacity: 1;
}
.example {
display: grid;
grid-template-columns: 64px 64px;
gap: 12px;
place-items: center;
}