Commit a74544fc authored by Eric Eastwood's avatar Eric Eastwood

Fix markdown table showing an extra rake column

Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/44024
parent 7734e85b
...@@ -17,8 +17,6 @@ ...@@ -17,8 +17,6 @@
*/ */
@mixin markdown-table { @mixin markdown-table {
width: auto; width: auto;
display: block;
overflow-x: auto;
} }
/* /*
......
...@@ -180,6 +180,11 @@ ul.wiki-pages-list.content-list { ...@@ -180,6 +180,11 @@ ul.wiki-pages-list.content-list {
} }
} }
.wiki-holder {
overflow-x: auto;
overflow-y: hidden;
}
.wiki { .wiki {
table { table {
@include markdown-table; @include markdown-table;
......
---
title: Fix markdown table showing extra column
merge_request: 17669
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment