diff --git a/packages/component-dashboard/src/components/sections/Item.local.scss b/packages/component-dashboard/src/components/sections/Item.local.scss
index 986384eafceef75dac8df54c016267fa80131a83..4b69969edf599b6d0b590cbe7292b155793a076e 100644
--- a/packages/component-dashboard/src/components/sections/Item.local.scss
+++ b/packages/component-dashboard/src/components/sections/Item.local.scss
@@ -4,7 +4,8 @@
 
 .main {
   display: flex;
-  align-items: center;
+  align-items: bottom;
+  justify-content: flex-start;
 }
 
 .main,
@@ -33,10 +34,10 @@
   font-size: 1.6em;
   margin-top: 0.2em;
   padding-right: 0.4em;
-  font-weight: 600;
+  font-weight: 500;
   overflow: hidden;
 
-  > * {
+  > span {
     background: white;
     padding-right: 0.3em;
     display: inline;
@@ -46,7 +47,10 @@
     float: left;
     width: 0;
     font-weight: 400;
-    color: grey;
+    color: lightgrey;
+    vertical-align: baseline;
+    font-size: 0.8em;
+    padding-top: 0.25em;
     white-space: nowrap;
     content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . "". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . ";
   }
diff --git a/packages/component-dashboard/src/components/sections/VersionTitle.js b/packages/component-dashboard/src/components/sections/VersionTitle.js
index 8c731a953c8a287539aeaf3a4854563d4e68b70a..a8240b6aeb2e5137845128fd8ccf3f22f19adb6a 100644
--- a/packages/component-dashboard/src/components/sections/VersionTitle.js
+++ b/packages/component-dashboard/src/components/sections/VersionTitle.js
@@ -12,7 +12,7 @@ export default ({version, className}) => {
 
   return (
     <div className={className}>
-      {title}
+      <span>{title}</span>
     </div>
   )
 }
\ No newline at end of file
diff --git a/packages/component-submit/src/components/Confirm.local.scss b/packages/component-submit/src/components/Confirm.local.scss
index abc16548fdcdf64505a23f5e795eed8eac786022..5fe0855233976bcc71b45213fbd621cda18da2db 100644
--- a/packages/component-submit/src/components/Confirm.local.scss
+++ b/packages/component-submit/src/components/Confirm.local.scss
@@ -8,7 +8,7 @@
   line-height: 1.55;
 }
 
-p {
+.root p {
   width: 55ch;
   font-size: 1em;
   margin-bottom: 1.6em;
diff --git a/packages/component-submit/src/components/Submit.local.scss b/packages/component-submit/src/components/Submit.local.scss
index 56a81ef3a8c15b0424c2434b17981def6318b789..620e814447c4eb9b474e8b4328663945a5675022 100644
--- a/packages/component-submit/src/components/Submit.local.scss
+++ b/packages/component-submit/src/components/Submit.local.scss
@@ -44,10 +44,6 @@ a {
   right: 10px;
 }
 
-.root p {
-  max-width: 45ch;
-}
-
 a:visited {
   color: var(--color-primary);
   font-style: normal;
diff --git a/packages/xpub-edit/src/components/Editor.local.css b/packages/xpub-edit/src/components/Editor.local.css
index eeb475c072220fccdb3c14e711180994a51d97e2..19ded8ead9327e7b62156dd845b1932fd322556d 100644
--- a/packages/xpub-edit/src/components/Editor.local.css
+++ b/packages/xpub-edit/src/components/Editor.local.css
@@ -73,3 +73,8 @@
   pointer-events: none;
   height: 0;
 }
+
+.ProseMirror p {
+  margin-top: 0;
+  margin-bottom: 0;
+}