mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
28 lines
422 B
SCSS
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;
|
|
}
|
|
}
|
|
} |