Commit 867b4f06 authored by Phil Hughes's avatar Phil Hughes

Merge branch '52178-markdown-table-borders' into 'master'

Fix markdown table border and background color

Closes #52178

See merge request gitlab-org/gitlab-ce!22090
parents 4d30215a 42a227e4
...@@ -20,20 +20,24 @@ ...@@ -20,20 +20,24 @@
display: inline-block; display: inline-block;
overflow-x: auto; overflow-x: auto;
border: 0; border: 0;
border-color: $gray-100; border-color: $gl-gray-100;
@supports (width: fit-content) { @supports (width: fit-content) {
display: block; display: block;
width: fit-content; width: fit-content;
} }
tbody {
background-color: $white-light;
}
tr { tr {
th { th {
border-bottom: solid 2px $gray-100; border-bottom: solid 2px $gl-gray-100;
} }
td { td {
border-color: $gray-100; border-color: $gl-gray-100;
} }
} }
} }
......
---
title: Add borders and white background to markdown tables
merge_request:
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