Files
brewman/overlord/src/app/product/product-detail/product-detail.component.css
T
tanshu 12bddcd7cc Product Detail is neater.
Recipe list fixed.

Recipe xlsx not working.
2025-07-21 06:18:23 +00:00

12 lines
231 B
CSS

.nutrition-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
align-items: stretch;
justify-items: stretch;
}
.nutrition-grid > * {
width: 100%;
box-sizing: border-box; /* helps with padding */
}