From 0d0efbb2c13929c576846d50d1733c2640fedf32 Mon Sep 17 00:00:00 2001 From: Marcus Date: Thu, 24 Oct 2024 19:56:34 +0200 Subject: [PATCH] add some diff to force new line when inline-block --- Arduino/CanGrow/include/Webserver/Common_HTML.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Arduino/CanGrow/include/Webserver/Common_HTML.h b/Arduino/CanGrow/include/Webserver/Common_HTML.h index ecc0604..19f7e4b 100644 --- a/Arduino/CanGrow/include/Webserver/Common_HTML.h +++ b/Arduino/CanGrow/include/Webserver/Common_HTML.h @@ -29,18 +29,19 @@ */ +// double div to force a linebreak. infomsg , warnmsg are inline-block const char Common_HTML_SAVE_MSG[] PROGMEM = R"EOF( -
✅ Successfully saved!
+
✅ Successfully saved!
)EOF"; const char Common_HTML_SAVE_MSG_ERR[] PROGMEM = R"EOF( -
!! ERROR saving!
+
!! ERROR saving!
)EOF"; const char Common_HTML_NEED_RESTART[] PROGMEM = R"EOF( -
❗ Restart is required to apply new settings! +
❗ Restart is required to apply new settings!
-
+
)EOF";