Fix large table horizontal scroll and prevent side-by-side tables

This commit is contained in:
Dany Jupille 2019-03-05 12:20:08 +00:00 committed by Annabel Dunstone Gray
parent df0d3f9c67
commit ab18641f56
2 changed files with 6 additions and 6 deletions

View File

@ -26,16 +26,11 @@
*/
@mixin markdown-table {
width: auto;
display: inline-block;
display: block;
overflow-x: auto;
border: 0;
border-color: $gl-gray-100;
@supports (width: fit-content) {
display: block;
width: fit-content;
}
tr {
th {
border-bottom: solid 2px $gl-gray-100;

View File

@ -0,0 +1,5 @@
---
title: Fix large table horizontal scroll and prevent side-by-side tables
merge_request: 25520
author: Dany Jupille
type: fixed