From 16d1f110063f44ba34ff21dba3dd80b9c277df80 Mon Sep 17 00:00:00 2001
From: Chris Lawton <chris.lawton@torchbox.com>
Date: Fri, 25 Jan 2019 15:02:19 +0000
Subject: [PATCH] adds space between submission name and and lead

---
 .../apply/funds/templates/funds/submissions_by_round.html     | 2 +-
 opentech/static_src/src/sass/apply/components/_admin-bar.scss | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/opentech/apply/funds/templates/funds/submissions_by_round.html b/opentech/apply/funds/templates/funds/submissions_by_round.html
index 7ab34df76..2aee68595 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 d0205e57e..ef371d1a7 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;
+        }
     }
 }
-- 
GitLab