From 09ba8bb035b60a6c65336e42ab03c326ab3bf269 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Thu, 1 Apr 2021 14:13:25 -0500 Subject: [PATCH] Increase toast max-width This makes it big enough to fit the compiler error message IndentationError: unindent doesn't match any outer indent level If we still have problems with overflow we should probably look at ways to wrap
 text instead of making this wider.
---
 src/index.scss | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/index.scss b/src/index.scss
index 32230b79..f5c7cb43 100644
--- a/src/index.scss
+++ b/src/index.scss
@@ -37,6 +37,7 @@ body {
 
 .#{$ns}-toast {
     user-select: text;
+    max-width: 700px;
 }
 
 .#{$ns}-button {