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

52 lines
702 B
SCSS
Raw Normal View History

2019-09-02 19:59:55 +02:00
.roadmapColumns {
@extend
.d-flex,
.justify-content-between,
.flex-wrap;
.roadmapColumn {
@extend
.card,
.my-2,
2019-09-19 16:42:43 +02:00
.p-0;
width: 32%;
background-color: $astuto-light-grey;
2019-09-19 19:06:22 +02:00
@include media-breakpoint-down(sm) {
2019-09-02 19:59:55 +02:00
width: 100%;
}
}
.columnHeader {
@extend
.card-header,
2019-09-19 16:42:43 +02:00
.d-flex;
.columnTitle {
color: white;
2022-08-22 10:38:03 +02:00
text-transform: uppercase;
2019-09-19 16:42:43 +02:00
}
2019-09-02 19:59:55 +02:00
}
2019-09-06 14:36:26 +02:00
.scrollContainer {
overflow-y: auto;
max-height: 350px;
}
2019-09-02 19:59:55 +02:00
2019-09-19 16:42:43 +02:00
.postLink {
@extend
.my-2;
&:hover { text-decoration: none; }
2019-09-02 19:59:55 +02:00
}
.postListItem {
@extend
2019-09-19 16:42:43 +02:00
.card3D,
.d-flex,
.flex-column,
2019-09-19 16:42:43 +02:00
.m-2,
.py-2;
}
2019-09-02 19:59:55 +02:00
}