Commit 3d4887ec authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Merge branch 'psi-no-table-extend' into 'master'

Remove usage of extend from table SCSS

See merge request gitlab-org/gitlab!70897
parents 38b1299c b71186bb
...@@ -23,6 +23,7 @@ table { ...@@ -23,6 +23,7 @@ table {
@include gl-text-gray-500; @include gl-text-gray-500;
} }
.md &:not(.code),
&.table { &.table {
margin-bottom: $gl-padding; margin-bottom: $gl-padding;
......
...@@ -160,8 +160,6 @@ ...@@ -160,8 +160,6 @@
} }
table:not(.code) { table:not(.code) {
@extend .table;
@extend .table-bordered;
margin: 16px 0; margin: 16px 0;
color: $gl-text-color; color: $gl-text-color;
border: 0; border: 0;
...@@ -172,9 +170,11 @@ ...@@ -172,9 +170,11 @@
tbody { tbody {
background-color: $white; background-color: $white;
td {
border-color: $gray-100;
} }
td,
th {
border: 1px solid $border-color;
} }
tr { tr {
......
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