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

46 lines
581 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,
.px-2;
width: 32%;
@media (max-width: 800px) {
2019-09-02 19:59:55 +02:00
width: 100%;
}
}
.columnHeader {
@extend
.card-header,
.d-flex,
.bg-transparent;
2019-09-02 19:59:55 +02:00
}
2019-09-06 14:36:26 +02:00
.scrollContainer {
@extend
.card-body;
overflow-y: auto;
max-height: 350px;
}
2019-09-02 19:59:55 +02:00
.postLink:hover {
text-decoration: none;
2019-09-02 19:59:55 +02:00
}
.postListItem {
@extend
.d-flex,
.flex-column,
.my-1,
.py-2;
}
2019-09-02 19:59:55 +02:00
}