diff options
author | 0neGal <mail@0negal.com> | 2022-03-10 20:27:13 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-03-10 20:27:13 +0100 |
commit | f942df2bdbefdb740f545a62c80fd6bed3f22147 (patch) | |
tree | 3059dbcc82e5d7ae57d2bcca8dec2381a3ff7a30 /src/app/toast.js | |
parent | 0cae81f6e2c9ea6e5501395fd00af7085e3b4e74 (diff) | |
download | Viper-f942df2bdbefdb740f545a62c80fd6bed3f22147.tar.gz Viper-f942df2bdbefdb740f545a62c80fd6bed3f22147.zip |
fixed toast errors having no background color
Diffstat (limited to 'src/app/toast.js')
-rw-r--r-- | src/app/toast.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/toast.js b/src/app/toast.js index 2a8555e..9cb8996 100644 --- a/src/app/toast.js +++ b/src/app/toast.js @@ -11,7 +11,7 @@ function Toast(properties) { switch(toast.scheme) { case "error": toast.fg = "#FFFFFF"; - toast.bg = "var(--red)"; + toast.bg = "rgb(var(--red))"; break case "success": toast.fg = "#FFFFFF"; |