From 1e4dd488731c4a834f43a38d7c5748fd338e7d11 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Mon, 8 Sep 2025 11:36:17 +0200 Subject: [PATCH] Fix HTML5 spacing --- tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino index 2c7d01cc0..98388e908 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_01_9_webserver.ino @@ -1121,7 +1121,7 @@ void WSContentButton(uint32_t title_index, bool show=true) { /*-------------------------------------------------------------------------------------------*/ void WSContentSpaceButton(uint32_t title_index, bool show=true) { - WSContentSend_P(PSTR("

")); // 5px padding + WSContentSend_P(PSTR("
")); // 5px padding WSContentButton(title_index, show); } @@ -3802,7 +3802,7 @@ void HandleManagement(void) { XdrvMailbox.index = 0; XdrvXsnsCall(FUNC_WEB_ADD_CONSOLE_BUTTON); -// WSContentSend_P(PSTR("

")); // 5px padding +// WSContentSend_P(PSTR("
")); // 5px padding XdrvCall(FUNC_WEB_ADD_MANAGEMENT_BUTTON); WSContentSpaceButton(BUTTON_MAIN);