diff --git a/app/assets/css/style.css b/app/assets/css/style.css
index fb9f2bd..60ec28b 100644
--- a/app/assets/css/style.css
+++ b/app/assets/css/style.css
@@ -3,4 +3,10 @@
}
.text-centered {
text-align: center;
+}
+
+#log-pre {
+ height: auto;
+ max-height: 200px;
+ overflow: auto
}
\ No newline at end of file
diff --git a/app/assets/vue/README.md b/app/assets/vue/README.md
new file mode 100755
index 0000000..6b20683
--- /dev/null
+++ b/app/assets/vue/README.md
@@ -0,0 +1,124 @@
+## Explanation of Build Files
+
+| | UMD | CommonJS | ES Module |
+| --- | --- | --- | --- |
+| **Full** | vue.js | vue.common.js | vue.esm.js |
+| **Runtime-only** | vue.runtime.js | vue.runtime.common.js | vue.runtime.esm.js |
+| **Full (production)** | vue.min.js | | |
+| **Runtime-only (production)** | vue.runtime.min.js | | |
+
+### Terms
+
+- **Full**: builds that contains both the compiler and the runtime.
+
+- **Compiler**: code that is responsible for compiling template strings into JavaScript render functions.
+
+- **Runtime**: code that is responsible for creating Vue instances, rendering and patching virtual DOM, etc. Basically everything minus the compiler.
+
+- **[UMD](https://github.com/umdjs/umd)**: UMD builds can be used directly in the browser via a `
+