client/src/components/SessionSummary.js
changeset 151 57d63a248f0d
parent 143 cfcbf4bc66f1
child 161 a642639dbc07
--- a/client/src/components/SessionSummary.js	Wed Aug 29 11:02:36 2018 +0200
+++ b/client/src/components/SessionSummary.js	Fri Aug 31 15:14:18 2018 +0200
@@ -9,7 +9,7 @@
       <li className="list-group-item" key={note.get('_id')}>
         <a href={'#note-' + note.get('_id')}>
           <span className="text-muted">{formatTimestamp(note.startedAt)} → {formatTimestamp(note.finishedAt)}</span>
-          <span className="pull-right">{_.words(note.plain).length} words</span>
+          <span className="float-right">{_.words(note.plain).length} words</span>
         </a>
       </li>
     )}