diff --git a/opentech/apply/funds/templates/funds/includes/review_table.html b/opentech/apply/funds/templates/funds/includes/review_table.html
index b628ecfe3207560fad977cb6431c55f55092d339..795f47c1ad60a13add873f991a8fcd9a05def0f0 100644
--- a/opentech/apply/funds/templates/funds/includes/review_table.html
+++ b/opentech/apply/funds/templates/funds/includes/review_table.html
@@ -14,7 +14,7 @@
             {% include 'funds/includes/review_table_row.html' with reviews=object.staff_not_reviewed missing=True %}
         {% endif %}
     {% else %}
-        <tr><td class="reviews-sidebar__no-reviews">No reviews yet</td></tr>
+        <tr><td colspan="4" class="reviews-sidebar__no-reviews">No reviews yet</td></tr>
     {% endif %}
 
     {% if object.stage.has_external_review %}
diff --git a/opentech/static_src/src/sass/apply/components/_all-submissions.scss b/opentech/static_src/src/sass/apply/components/_all-submissions.scss
index b931ebe2387b82a4084f1d070e82bb06e6bb50ef..73651c3ca276851ac653894b48155897ab20dfe3 100644
--- a/opentech/static_src/src/sass/apply/components/_all-submissions.scss
+++ b/opentech/static_src/src/sass/apply/components/_all-submissions.scss
@@ -84,6 +84,18 @@ $table-breakpoint: 'tablet-landscape';
                 padding-top: 15px;
                 font-weight: $weight--bold;
 
+                @include media-query($table-breakpoint) {
+                    display: flex;
+                    align-items: center;
+                    padding-top: 20px;
+                    padding-left: 10px;
+                }
+
+                @include media-query(desktop) {
+                    display: table-cell;
+                    padding-left: 20px;
+                }
+
                 &.has-tooltip {
                     @include media-query($table-breakpoint) {
                         &::before {
@@ -112,11 +124,6 @@ $table-breakpoint: 'tablet-landscape';
                     }
                 }
 
-                @include media-query($table-breakpoint) {
-                    padding-top: 20px;
-                    padding-left: 20px;
-                }
-
                 a {
                     color: $color--primary;
 
diff --git a/opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss b/opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss
index 3ce2c91f11211002ac9cb1537d101be9becfaff3..0b19921b13c944fe8e91397de9beac5be6a219fb 100644
--- a/opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss
+++ b/opentech/static_src/src/sass/apply/components/_reviews-sidebar.scss
@@ -5,6 +5,8 @@
 
     tbody {
         tr {
+            border: 0;
+
             &:hover {
                 box-shadow: none;
             }