diff --git a/ghost/admin/app/components/gh-members-import-table.hbs b/ghost/admin/app/components/gh-members-import-table.hbs
index 7655204be1..0f1ac4028e 100644
--- a/ghost/admin/app/components/gh-members-import-table.hbs
+++ b/ghost/admin/app/components/gh-members-import-table.hbs
@@ -1,13 +1,21 @@
-
+
- Header |
- Data{{svg-jar "arrow-left" class="w3 h3 ml2" }} {{svg-jar "arrow-right" class="w3 h3 ml2" }} |
+ Header |
+
+
+ |
{{#each-in currentlyDisplayedData as |key value|}}
- {{key}} |
- {{value}} |
+ {{key}} |
+ {{value}} |
{{else}}
diff --git a/ghost/admin/app/components/modal-import-members.hbs b/ghost/admin/app/components/modal-import-members.hbs
index 08f3d34bb6..5ec8d74d82 100644
--- a/ghost/admin/app/components/modal-import-members.hbs
+++ b/ghost/admin/app/components/modal-import-members.hbs
@@ -50,6 +50,7 @@
{{/if}}
{{#if this.config.enableDeveloperExperiments}}
+ Preview
{{/if}}
diff --git a/ghost/admin/app/styles/layouts/members.css b/ghost/admin/app/styles/layouts/members.css
index 7150ac0812..6177a77385 100644
--- a/ghost/admin/app/styles/layouts/members.css
+++ b/ghost/admin/app/styles/layouts/members.css
@@ -461,3 +461,24 @@ p.gh-members-import-errordetailtext {
padding-bottom: 4px;
margin-bottom: 6px;
}
+
+.gh-members-import-table th {
+ padding: 3px 8px;
+}
+
+.gh-members-import-datanav {
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.01), 0 1px 2px rgba(0, 0, 0, 0.05);
+}
+
+.gh-members-import-table td {
+ padding: 6px 8px;
+}
+
+.gh-members-import-table tr td:first-of-type,
+.gh-members-import-table tr th:first-of-type {
+ max-width: 112px;
+}
+
+.gh-members-import-table tr:not(:last-of-type) td {
+ border-bottom: 1px solid var(--whitegrey);
+}
\ No newline at end of file