From 605c5e397e69e3648cb9bd59400204639a072375 Mon Sep 17 00:00:00 2001 From: Qiu Hua Date: Fri, 28 May 2021 19:04:07 +0800 Subject: [PATCH] fix a display bug when the message wider than the window (#304) --- lib/livebook_web/templates/layout/live.html.leex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/livebook_web/templates/layout/live.html.leex b/lib/livebook_web/templates/layout/live.html.leex index fc3e5a868..47e44f7f5 100644 --- a/lib/livebook_web/templates/layout/live.html.leex +++ b/lib/livebook_web/templates/layout/live.html.leex @@ -5,7 +5,7 @@ phx-click="lv:clear-flash" phx-value-key="info"> <%= remix_icon("information-line", class: "text-2xl") %> - <%= live_flash(@flash, :info) %> + <%= live_flash(@flash, :info) %> <% end %> @@ -14,7 +14,7 @@ phx-click="lv:clear-flash" phx-value-key="error"> <%= remix_icon("error-warning-line", class: "text-2xl") %> - <%= live_flash(@flash, :error) %> + <%= live_flash(@flash, :error) %> <% end %>