31 lines
395 B
CSS
31 lines
395 B
CSS
.full-recipe-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.full-recipe {
|
|
max-width: 80ch;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.recipe-title {
|
|
margin-block: 0.5em;
|
|
}
|
|
|
|
.main-image {
|
|
width: 100%;
|
|
}
|