Files
astuto/app/javascript/stylesheets/components/Post.scss
2019-09-20 17:56:01 +02:00

28 lines
422 B
SCSS

.pageContainer {
@extend
.d-flex,
.justify-content-between,
.align-items-start;
flex-direction: row;
@include media-breakpoint-down(sm) {
flex-direction: column;
.postAndCommentsContainer { width: 100%; }
}
.postAndCommentsContainer {
@extend
.card,
.flex-grow-1,
.p-3;
.postDescription {
@extend
.my-3;
color: #333;
}
}
}