~xdavidwu/xdavidwu.link

2f299fff143d06ab18ca8b561162d18f6781b1d6 — Michael Rose 5 years ago 8b3f5d9
Fix wide tables that overflow parent container

Close #2008
2 files changed, 3 insertions(+), 0 deletions(-)

M CHANGELOG.md
M _sass/minimal-mistakes/_tables.scss
M CHANGELOG.md => CHANGELOG.md +1 -0
@@ 12,6 12,7 @@

### Bug Fixes

- Fix wide tables that overflow parent container. [#2008](https://github.com/mmistakes/minimal-mistakes/issues/2008)
- Fix Spanish `comments_label` and `comments_title` UI text strings. [#1997](https://github.com/mmistakes/minimal-mistakes/pull/1997)
- Allow sidebar navigation with custom sidebar content. [#1986](https://github.com/mmistakes/minimal-mistakes/issues/1986)
- Fix Google Custom Search JavaScript error when not using Instant Search. [#1983](https://github.com/mmistakes/minimal-mistakes/pull/1983)

M _sass/minimal-mistakes/_tables.scss => _sass/minimal-mistakes/_tables.scss +2 -0
@@ 3,11 3,13 @@
   ========================================================================== */

table {
  display: block;
  margin-bottom: 1em;
  width: 100%;
  font-family: $global-font-family;
  font-size: $type-size-6;
  border-collapse: collapse;
  overflow-x: auto;

  & + table {
    margin-top: 1em;