montreuil: allow cells with no border (#36355)

This commit is contained in:
Serghei Mihai 2019-09-26 10:01:48 +02:00
parent 2fe48c3200
commit bb65a9411f
1 changed files with 11 additions and 6 deletions

View File

@ -167,12 +167,17 @@ div#sidebar {
}
}
div.cell.sticky {
position: sticky;
top: 1em;
@media screen and (max-width: $mobile-limit) {
position: relative;
margin-bottom: 2em;
div.cell {
&.no-border {
border: 0;
}
&.sticky {
position: sticky;
top: 1em;
@media screen and (max-width: $mobile-limit) {
position: relative;
margin-bottom: 2em;
}
}
}