about summary refs log tree commit diff
path: root/app/javascript/glitch/components/notification
diff options
context:
space:
mode:
authorOndřej Hruška <ondra@ondrovo.com>2017-07-21 21:12:43 +0200
committerOndřej Hruška <ondra@ondrovo.com>2017-07-21 21:12:43 +0200
commit0244019ca17288802a144c84b7e0f319f1685695 (patch)
tree83785c3907420f2e88aeb4347d9c72b48f08d6ef /app/javascript/glitch/components/notification
parent604654ccb417ffdc9b48d876bea76c8bec14f360 (diff)
Fixed horrible outline around notif clearing checkbox & moved the overlay to a more sr-friendly place
Diffstat (limited to 'app/javascript/glitch/components/notification')
-rw-r--r--app/javascript/glitch/components/notification/follow.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/glitch/components/notification/follow.js b/app/javascript/glitch/components/notification/follow.js
index 0e0065eb1..d340e83c8 100644
--- a/app/javascript/glitch/components/notification/follow.js
+++ b/app/javascript/glitch/components/notification/follow.js
@@ -103,7 +103,6 @@ We can now render our component.
 
     return (
       <div className='notification notification-follow'>
-        <NotificationOverlayContainer notification={notification} />
         <div className='notification__message'>
           <div className='notification__favourite-icon-wrapper'>
             <i className='fa fa-fw fa-user-plus' />
@@ -117,6 +116,7 @@ We can now render our component.
         </div>
 
         <AccountContainer id={account.get('id')} withNote={false} />
+        <NotificationOverlayContainer notification={notification} />
       </div>
     );
   }