mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
60 lines
838 B
SCSS
60 lines
838 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;
|
|
|
|
.postInfo {
|
|
@extend .d-flex;
|
|
|
|
span {
|
|
@extend .mr-2;
|
|
}
|
|
}
|
|
|
|
.postHeader {
|
|
@extend
|
|
.d-flex;
|
|
|
|
a {
|
|
@extend
|
|
.ml-1;
|
|
|
|
line-height: 1em;
|
|
}
|
|
}
|
|
|
|
.postSettings {
|
|
@extend
|
|
.d-flex,
|
|
.justify-content-between;
|
|
|
|
.selectPicker {
|
|
@extend
|
|
.custom-select,
|
|
.mx-2;
|
|
}
|
|
}
|
|
|
|
.postDescription {
|
|
@extend
|
|
.my-3;
|
|
|
|
color: #333;
|
|
}
|
|
}
|
|
} |