Merge pull request #552 from nicolium/fix/danger-button-bg-color

nicolium: Fix "Discard" button font color invisible when focused (#551)
This commit is contained in:
nicole mikołajczyk
2026-03-19 06:38:45 +01:00
committed by GitHub
2 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,6 @@ const TrendsColumn: React.FC<ITrendsColumn> = ({ type, multiColumn }) => {
isLoading = isLoadingAccounts;
placeholderComponent = PlaceholderAccount;
console.log(accounts, isFetching, isLoading);
if (!isFetching && !isLoading && accounts?.length === 0) {
children = [
<EmptyMessage

View File

@ -296,6 +296,7 @@
}
&:focus {
background-color: rgb(var(--color-danger-100));
outline-color: rgb(var(--color-danger-500));
}