fix error colors on dark mode

This commit is contained in:
Sean Yesmunt 2020-02-23 20:31:13 -05:00
parent 0edea00943
commit a87d564c9e
2 changed files with 3 additions and 2 deletions

View file

@ -55,7 +55,7 @@ class ModalError extends React.PureComponent<Props> {
"We're sorry that LBRY has encountered an error. This has been reported and we will investigate the problem."
)}
</p>
<ul className="error-modal__error-list">{errorInfoList}</ul>
<ul className="error-modal__error-list ul--no-style">{errorInfoList}</ul>
</Modal>
);
}

View file

@ -39,10 +39,11 @@
--color-comment-menu: #6a6a6a;
--color-comment-menu-hovering: #e0e0e0;
--color-notice: #58563b;
--color-error: #61373f;
// Text
--color-text: #eeeeee;
--color-text-error: var(--lbry-red-1);
--color-text-error: #f5748c;
--color-text-empty: #bbbbbb;
--color-text-help: #bbbbbb;
--color-text-subtitle: #9fafc0;