Files
astuto/app/javascript/stylesheets/components/Post.scss

66 lines
904 B
SCSS
Raw Normal View History

.pageContainer {
@extend
.d-flex,
.justify-content-between,
.align-items-start;
2019-09-30 16:54:37 +02:00
flex-direction: row;
2019-09-30 16:54:37 +02:00
@include media-breakpoint-down(sm) {
flex-direction: column;
.postAndCommentsContainer { width: 100%; }
}
.sidebar {
.likeList {
@extend .sidebarCard;
}
}
.postAndCommentsContainer {
@extend
.card,
.flex-grow-1,
.p-3;
2019-09-21 12:54:57 +02:00
.postInfo {
@extend .d-flex;
span {
@extend .mr-2;
}
}
2019-09-25 11:50:23 +02:00
.postHeader {
@extend
.d-flex;
a {
@extend
.ml-1;
line-height: 1em;
}
}
2019-09-21 12:54:57 +02:00
.postSettings {
@extend
.d-flex,
.justify-content-between;
.selectPicker {
@extend
.custom-select,
.mx-2;
}
}
.postDescription {
@extend
.my-3;
2019-09-27 11:40:33 +02:00
color: $astuto-black;
}
}
}