feat: implement responsive column-based styling for all thumbnail cards #9
@@ -571,6 +571,10 @@
|
||||
.recipes-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.included-cookbooks-section .cookbooks-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
/* Included Cookbooks Section */
|
||||
@@ -587,11 +591,20 @@
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.included-cookbooks-section .cookbooks-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 1.5rem;
|
||||
}
|
||||
|
||||
.cookbook-card.nested {
|
||||
border: 2px solid #e0e0e0;
|
||||
background: white;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
aspect-ratio: 1 / 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cookbook-card.nested:hover {
|
||||
|
||||
Reference in New Issue
Block a user