diff options
author | 0neGal <mail@0negal.com> | 2023-09-18 12:55:00 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-09-18 12:55:00 +0200 |
commit | 9b098ae8d70892a20ce9456e5a978e9e09fb9214 (patch) | |
tree | 51b571c9f08e2979b4e5a43eeff1e8a131e05ac4 | |
parent | 3b8dc1d3c4865ca40df9c264223b6302504e2583 (diff) | |
download | Viper-9b098ae8d70892a20ce9456e5a978e9e09fb9214.tar.gz Viper-9b098ae8d70892a20ce9456e5a978e9e09fb9214.zip |
fixed toasts not breaking onto a new line
This only occurred if there was one continous piece of text, that is, no
spaces in between the characters, this only happened in the detailed
error messages, but it's quite important to see the whole message!
-rw-r--r-- | src/app/css/toasts.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app/css/toasts.css b/src/app/css/toasts.css index 65e325f..9b92383 100644 --- a/src/app/css/toasts.css +++ b/src/app/css/toasts.css @@ -54,4 +54,5 @@ opacity: 0.8; font-size: 0.8em; font-weight: 600; + word-break: break-word; } |