diff --git a/app/soapbox/components/column.js b/app/soapbox/components/column.js index f7466c15e..02cc08743 100644 --- a/app/soapbox/components/column.js +++ b/app/soapbox/components/column.js @@ -1,18 +1,24 @@ import React from 'react'; import PropTypes from 'prop-types'; +import classNames from 'classnames'; export default class Column extends React.PureComponent { static propTypes = { + className: PropTypes.string, children: PropTypes.node, label: PropTypes.string, }; render() { - const { label, children } = this.props; + const { className, label, children } = this.props; return ( -
+
{children}
); diff --git a/app/soapbox/features/notifications/components/notification.js b/app/soapbox/features/notifications/components/notification.js index fd9ab525b..fe25af054 100644 --- a/app/soapbox/features/notifications/components/notification.js +++ b/app/soapbox/features/notifications/components/notification.js @@ -112,8 +112,8 @@ class Notification extends ImmutablePureComponent {
-
- +
+
@@ -134,8 +134,8 @@ class Notification extends ImmutablePureComponent {
-
- +
+
@@ -151,18 +151,20 @@ class Notification extends ImmutablePureComponent { renderMention(notification) { return ( -