Skip to content

Commit

Permalink
fix: overflow auto for tables (jekyll#296)
Browse files Browse the repository at this point in the history
Merge pull request 296
  • Loading branch information
jekyllbot authored Jan 16, 2020
1 parent 9aba15a commit 3f43ad8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions _sass/minima/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,11 @@ table {
td {
border: 1px solid $table-border-color;
}

@include media-query($on-laptop) {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}

0 comments on commit 3f43ad8

Please sign in to comment.