diff --git a/src/components/UnpublishedListing.css b/src/components/UnpublishedListing.css
index a4b97b67..b37d8bf2 100644
--- a/src/components/UnpublishedListing.css
+++ b/src/components/UnpublishedListing.css
@@ -4,6 +4,9 @@
vertical-align: top;
text-align: center;
width: 28%;
+ & h2 {
+ font-size: 16px;
+ }
}
.column:not(:last-child) {
diff --git a/src/components/UnpublishedListing.js b/src/components/UnpublishedListing.js
index ef68caf9..97a711f4 100644
--- a/src/components/UnpublishedListing.js
+++ b/src/components/UnpublishedListing.js
@@ -13,7 +13,7 @@ export default class UnpublishedListing extends React.Component {
if (!column) {
return entries.entrySeq().map(([currColumn, currEntries]) => (
-
{statusDescriptions.get(currColumn)}
+ {statusDescriptions.get(currColumn)}
{this.renderColumns(currEntries, currColumn)}
));
@@ -41,6 +41,7 @@ export default class UnpublishedListing extends React.Component {
return (
+
Editorial Workflow
{columns}
);
diff --git a/src/containers/editorialWorkflow/CollectionPageHOC.js b/src/containers/editorialWorkflow/CollectionPageHOC.js
index 4894e79a..bee4a2ac 100644
--- a/src/containers/editorialWorkflow/CollectionPageHOC.js
+++ b/src/containers/editorialWorkflow/CollectionPageHOC.js
@@ -6,6 +6,7 @@ import { selectUnpublishedEntries } from '../../reducers';
import { EDITORIAL_WORKFLOW, status } from '../../constants/publishModes';
import UnpublishedListing from '../../components/UnpublishedListing';
import { connect } from 'react-redux';
+import styles from '../CollectionPage.css';
export default function CollectionPageHOC(CollectionPage) {
class CollectionPageHOC extends CollectionPage {
@@ -23,7 +24,7 @@ export default function CollectionPageHOC(CollectionPage) {
if (!isEditorialWorkflow) return super.render();
return (
-