css: remove main content right border on mobiles (#18915)

This commit is contained in:
Frédéric Péters 2017-09-23 22:46:04 +02:00
parent b1d29dcec1
commit 09074455b9
1 changed files with 3 additions and 0 deletions

View File

@ -252,6 +252,9 @@ div#main-content {
overflow-x: auto;
overflow-y: hidden;
box-sizing: border-box;
@media screen and (max-width: $mobile-limit) {
border-width: 0 0 1px 0;
}
}
div#main-content h2 {