diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-31 14:29:48 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-31 14:29:48 +0100 |
commit | 0c947a9f7d4ff3f9e65d01df21d6d50e9fa51095 (patch) | |
tree | 223149eceed79cad843ed38fed23ed6d6ae1088b /components | |
parent | 9695ce3a31c314c1aa4c2d0b7ebae1d066070b71 (diff) |
toast color fix
Diffstat (limited to 'components')
-rw-r--r-- | components/toast.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/toast.tsx b/components/toast.tsx index 1d467bd..e01683f 100644 --- a/components/toast.tsx +++ b/components/toast.tsx @@ -41,8 +41,8 @@ export class Toast extends Component<{ boxShadow: "0 8px 12px -4px #00000033", backgroundColor: this.props.type === "normal" ? "var(--background)" : - this.props.type === "confirmation" ? "var(--disk-a)" : - this.props.type === "error" ? "var(--disk-b)" : "var(--background)", + this.props.type === "confirmation" ? "var(--disk-b)" : + this.props.type === "error" ? "var(--disk-a)" : "var(--background)", ...this.props.style }}> { |