mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
51 lines
663 B
SCSS
51 lines
663 B
SCSS
.roadmapColumns {
|
|
@extend
|
|
.d-flex,
|
|
.justify-content-between,
|
|
.flex-wrap;
|
|
|
|
.roadmapColumn {
|
|
@extend
|
|
.card,
|
|
.my-2,
|
|
.p-0;
|
|
|
|
width: 32%;
|
|
background-color: $astuto-grey;
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.columnHeader {
|
|
@extend
|
|
.card-header,
|
|
.d-flex;
|
|
|
|
.columnTitle {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.scrollContainer {
|
|
overflow-y: auto;
|
|
max-height: 350px;
|
|
}
|
|
|
|
.postLink {
|
|
@extend
|
|
.my-2;
|
|
|
|
&:hover { text-decoration: none; }
|
|
}
|
|
|
|
.postListItem {
|
|
@extend
|
|
.card3D,
|
|
.d-flex,
|
|
.flex-column,
|
|
.m-2,
|
|
.py-2;
|
|
}
|
|
} |