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

22 lines
304 B
SCSS
Raw Normal View History

2019-09-02 19:59:55 +02:00
.roadmapColumns {
@media (max-width: 800px) {
.roadmapColumn {
width: 100%;
}
}
@media (min-width: 801px) {
.roadmapColumn {
width: 32%;
}
}
2019-09-06 14:36:26 +02:00
.scrollContainer {
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
}
}