From 470f629b06477eb3fb049de16de73c6e829f20b5 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 2 Dec 2016 14:52:41 +0100 Subject: Fix #284 - Alignment in notifications column --- .../notifications/components/notification.jsx | 33 ++++++++++++++++++---- 1 file changed, 28 insertions(+), 5 deletions(-) (limited to 'app/assets/javascripts/components/features') diff --git a/app/assets/javascripts/components/features/notifications/components/notification.jsx b/app/assets/javascripts/components/features/notifications/components/notification.jsx index be8cf3616..a8208f02c 100644 --- a/app/assets/javascripts/components/features/notifications/components/notification.jsx +++ b/app/assets/javascripts/components/features/notifications/components/notification.jsx @@ -6,11 +6,13 @@ import { FormattedMessage } from 'react-intl'; import { Link } from 'react-router'; const messageStyle = { - padding: '8px 10px', + marginLeft: '68px', + padding: '8px 0', paddingBottom: '0', cursor: 'default', color: '#d9e1e8', - fontSize: '15px' + fontSize: '15px', + position: 'relative' }; const linkStyle = { @@ -28,7 +30,14 @@ const Notification = React.createClass({ renderFollow (account, link) { return (
-
+
+
+ +
+ + +
+
); @@ -41,7 +50,14 @@ const Notification = React.createClass({ renderFavourite (notification, link) { return (
-
+
+
+ +
+ + +
+
); @@ -50,7 +66,14 @@ const Notification = React.createClass({ renderReblog (notification, link) { return (
-
+
+
+ +
+ + +
+
); -- cgit