Skip to content

Commit

Permalink
ui(style): fix table color in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Oct 12, 2023
1 parent 6a60e4e commit 86dc327
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,10 @@ h2 {
--bs-popover-border-color: var(--bs-gray-700);
}

:root[data-theme='dark'] .table {
--bs-table-color: var(--bs-body-color);
}

:root[data-theme='dark'] .tooltip {
--bs-tooltip-color: var(--bs-white);
--bs-tooltip-bg: var(--bs-black);
Expand All @@ -669,6 +673,10 @@ h2 {
border-color: var(--bs-gray-800);
}

:root[data-theme='dark'] .input-group-text {
background-color: var(--bs-gray-800);
}

:root[data-theme='dark'] .btn-dark:hover {
background-color: var(--bs-gray-dark);
border-color: var(--bs-gray-dark) !important;
Expand Down

0 comments on commit 86dc327

Please sign in to comment.