Fixing bootstrap dark-table top border (#1763)

This addresses https://github.com/alshedivat/al-folio/issues/1425.

Contributions:
- Added border attribute to `.table-dark` within `_base.scss` to
override bootstrap theme border settings for `.tabled-bordered`.
Displays top border in dark mode for only those tables that are bordered
This commit is contained in:
Lance Wilhelm 2023-09-28 12:58:48 -04:00 committed by GitHub
parent be4be01fcc
commit b663e9e1c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -50,6 +50,9 @@ table.table a {
.table-dark { .table-dark {
background-color: transparent; background-color: transparent;
&.table-bordered{
border: 1px solid var(--global-divider-color) !important;
}
} }
figure, figure,