meals-made-easy-react-app/src/components/recipe-card/recipe-card.module.css
2024-08-01 10:11:55 -05:00

45 lines
566 B
CSS

.recipe-card {
justify-self: stretch;
}
.recipe-image {
width: 100%;
max-height: 200px;
object-fit: cover;
}
.info-container {
display: flex;
flex-direction: column;
row-gap: 10px;
}
.info-row {
display: flex;
justify-content: space-between;
}
.title {
margin-block: 0;
font-size: 18px;
}
.star-info {
display: flex;
column-gap: 5px;
align-items: center;
}
.star {
color: var(--primary-yellow);
}
.user-info {
display: flex;
column-gap: 5px;
}
.user-icon {
color: var(--primary-red);
}