diff --git a/containers/libreportal/frontend/css/config.css b/containers/libreportal/frontend/css/config.css index 4eadfab..4c81bba 100644 --- a/containers/libreportal/frontend/css/config.css +++ b/containers/libreportal/frontend/css/config.css @@ -339,7 +339,7 @@ .config-actions { display: flex; gap: 12px; - padding-top: 24px; + padding-top: 0; margin-top: 0px; } diff --git a/containers/libreportal/frontend/js/components/config/config-manager.js b/containers/libreportal/frontend/js/components/config/config-manager.js index 83f23ab..260042d 100755 --- a/containers/libreportal/frontend/js/components/config/config-manager.js +++ b/containers/libreportal/frontend/js/components/config/config-manager.js @@ -102,6 +102,9 @@ if (typeof window.ConfigManager === 'undefined') { // the heading. if (category === 'features') { formHTML += '

⚠️ Danger Zone

These options are for advanced users and may affect system stability

'; + // Divider below the features Danger Zone banner, separating it from + // the feature fields — same rule used elsewhere in the config form. + formHTML += '
'; } //console.log('ConfigManager: About to process configData entries:', Object.keys(configData));