add some diff to force new line when inline-block
This commit is contained in:
parent
4808af281c
commit
0d0efbb2c1
1 changed files with 5 additions and 4 deletions
|
@ -29,18 +29,19 @@
|
|||
*/
|
||||
|
||||
|
||||
// double div to force a linebreak. infomsg , warnmsg are inline-block
|
||||
const char Common_HTML_SAVE_MSG[] PROGMEM = R"EOF(
|
||||
<div class='infomsg'>✅ Successfully saved!</div>
|
||||
<div><div class='infomsg'>✅ Successfully saved!</div></div>
|
||||
)EOF";
|
||||
|
||||
const char Common_HTML_SAVE_MSG_ERR[] PROGMEM = R"EOF(
|
||||
<div class='infomsg'>!! ERROR saving!</div>
|
||||
<div><div class='infomsg'>!! ERROR saving!</div></div>
|
||||
)EOF";
|
||||
|
||||
const char Common_HTML_NEED_RESTART[] PROGMEM = R"EOF(
|
||||
<div class='warnmsg'>❗ Restart is required to apply new settings!
|
||||
<div><div class='warnmsg'>❗ Restart is required to apply new settings!
|
||||
<form action='/system/restart' method='post'><input type='hidden' name='confirmed' value='true' />
|
||||
<input type='submit' value='Restart now' />
|
||||
</form>
|
||||
</div>
|
||||
</div></div>
|
||||
)EOF";
|
||||
|
|
Loading…
Reference in a new issue