diff --git a/packages/common/styles.js b/packages/common/styles.js
index 6c249cb38af062f08547a9a4506298bacebd3337..3f5f027e1ed5737ccd473f1ec621376537b90ed8 100644
--- a/packages/common/styles.js
+++ b/packages/common/styles.js
@@ -36,7 +36,8 @@ export function getGeneralCSS() {
         code {
             background-color: var(--vpu-light);
             color: var(--vpu-danger-bg-color);
-            font-size: 0.875em;
+            font-size: 1em;
+            line-height: 1.5em;
             font-weight: normal;
             padding: 0.25em 0.5em 0.25em;
         }
@@ -425,5 +426,14 @@ export function getDocumentationCSS() {
             color: #fff;
             background-color: #000;
         }
+
+        .documentation ul, .documentation ol, .documentation li {
+            margin: inherit;
+            padding: inherit;
+        }
+
+        .documentation li > ul {
+            margin-left: 0.5em;
+        }
     `;
 }