diff --git a/opentech/apply/funds/templates/funds/submissions_by_round.html b/opentech/apply/funds/templates/funds/submissions_by_round.html
index 7ab34df762e7dc6c7dbbb565eeea876f35b78c68..2aee68595093c4fb1ecc7df571dbef701a500b53 100644
--- a/opentech/apply/funds/templates/funds/submissions_by_round.html
+++ b/opentech/apply/funds/templates/funds/submissions_by_round.html
@@ -8,7 +8,7 @@
         <div class="admin-bar__inner admin-bar__inner--with-button">
             <div>
                 <h1 class="gamma heading heading--no-margin heading--bold">{{ object }}</h1>
-                <p class="admin-bar__meta">{% if object.fund %}{{ object.fund }} | {% endif %}Lead: {{ object.lead }}</p>
+                <p class="admin-bar__meta">{% if object.fund %}{{ object.fund }} <span>|</span> {% endif %}Lead: {{ object.lead }}</p>
             </div>
             <div id="submissions-by-round-app-react-switcher"></div>
         </div>
diff --git a/opentech/static_src/src/sass/apply/components/_admin-bar.scss b/opentech/static_src/src/sass/apply/components/_admin-bar.scss
index d0205e57e6f7ad01da7578b0a794fc47a577d21c..ef371d1a796b90145ab925a322066cb3ea3cf1c0 100644
--- a/opentech/static_src/src/sass/apply/components/_admin-bar.scss
+++ b/opentech/static_src/src/sass/apply/components/_admin-bar.scss
@@ -31,5 +31,9 @@
 
     &__meta {
         margin: 0 0 10px;
+
+        span {
+            margin: 0 5px;
+        }
     }
 }