Rev 5822 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.description {
background-color: $bg-color;
display: flex;
flex-direction: column;
min-height: 100%;
justify-content: center;
padding: 2rem;
border-radius: 5px;
box-shadow: $light-shadow;
.header {
border-bottom: $border-primary;
padding-bottom: 1rem;
}
.infoContainer {
display: flex;
flex-direction: column;
}
.descpContainer {
display: flex;
flex-direction: column;
}
}
.locationContainer {
display: flex;
padding: 1rem 0;
align-items: center;
color: $font-color;
img {
width: 1rem;
}
}
.likeContainer {
display: flex;
padding: 1rem 0;
align-items: center;
.heart {
font-size: 1.5rem;
}
}
@include maxwidth("medium") {
.description {
.descpContainer {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
}
}