diff --git a/views/config.html b/views/config.html
index 61511e9e..7651de9f 100644
--- a/views/config.html
+++ b/views/config.html
@@ -1,6 +1,7 @@
Set directories for your config file.
+
diff --git a/views/scripts/config.js b/views/scripts/config.js
index 240ee0f0..26c4fd97 100644
--- a/views/scripts/config.js
+++ b/views/scripts/config.js
@@ -14,6 +14,7 @@ function processChildren(element, data) {
for (let key in data) {
var child = document.createElement("div");
child.id = key;
+ child.className = "config-element";
child.appendChild(document.createTextNode(key + ": "));
if (data[key] === Object(data[key])) {
console.log(key, data[key]);
diff --git a/views/style.css b/views/style.css
new file mode 100644
index 00000000..597c1865
--- /dev/null
+++ b/views/style.css
@@ -0,0 +1,3 @@
+.config-element {
+ margin: 8px;
+}
\ No newline at end of file