12 lines
231 B
CSS
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 */
|
|
}
|