diff --git a/opentech/apply/review/templates/review/review_list.html b/opentech/apply/review/templates/review/review_list.html
index 8450319eb8e878286d1bb56e0bbcc059dff6d7ee..710b97246d3d02250515f6e499eb77c00fed0c9e 100644
--- a/opentech/apply/review/templates/review/review_list.html
+++ b/opentech/apply/review/templates/review/review_list.html
@@ -5,16 +5,14 @@
 
 {% block content %}
 <div class="wrapper wrapper--breakout wrapper--admin">
-    <div class="wrapper wrapper--medium">
+    <div class="wrapper wrapper--medium wrapper--reviews">
         <div>
             <h1 class="beta heading heading--no-margin heading--bold">Reviews</h1>
             <h5>For <a href="{% url "funds:submissions:detail" submission.id %}">{{ submission.title }}</a></h5>
         </div>
         {% if request.user|has_review_perm:submission %}
             {% if request.user|has_draft:submission or request.user|can_review:submission %}
-                <div class="wrapper wrapper--cta-box">
-                    {% include 'review/includes/review_button.html' with submission=submission %}
-                </div>
+                {% include 'review/includes/review_button.html' with submission=submission %}
             {% endif %}
         {% endif %}
     </div>
diff --git a/opentech/static_src/src/sass/apply/components/_wrapper.scss b/opentech/static_src/src/sass/apply/components/_wrapper.scss
index 311fab96c9ed6e9c889597d4124f9d0a50f23a09..90bfb7424b906845213f4658df569ab623a19f23 100644
--- a/opentech/static_src/src/sass/apply/components/_wrapper.scss
+++ b/opentech/static_src/src/sass/apply/components/_wrapper.scss
@@ -321,4 +321,13 @@
             cursor: all-scroll;
         }
     }
+
+    &--reviews {
+        @include media-query(tablet-portrait) {
+            display: flex;
+            align-items: center;
+            flex-direction: row;
+            justify-content: space-between;
+        }
+    }
 }