Skip to content

Commit a299a14

Browse files
committed
fix(wizard): missing HTML tag breaking footer
Signed-off-by: Thierry Bugier <[email protected]>
1 parent e3188ef commit a299a14

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

css/styles.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -1129,8 +1129,7 @@ a.plugin_formcreator_formTile_title {
11291129
clear: both;
11301130
position: fixed;
11311131
bottom: 0;
1132-
width: 100%;
1133-
padding: 5px 0;
1132+
width: calc(100% - 10px);
11341133
}
11351134

11361135
.plugin_formcreator_leftHeader#header .plugin_formcreator_leftMenu {

inc/wizard.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public static function header($title) {
163163
self::showHeaderTopContent();
164164
echo '</div>'; //.formcreator_header_top
165165

166-
echo '<div id="page" class="plugin_formcreator_page">';
166+
echo '<main id="page" class="plugin_formcreator_page">';
167167

168168
// call static function callcron() every 5min
169169
CronTask::callCron();

0 commit comments

Comments
 (0)