--- a/client/src/components/SessionSummary.js Thu Oct 11 11:05:04 2018 +0200
+++ b/client/src/components/SessionSummary.js Tue Nov 06 16:19:26 2018 +0100
@@ -9,9 +9,9 @@
{notes.map((note) =>
<li className="list-group-item border-0" key={note._id}>
<a href={'#note-' + note._id}>
- <small className="note-time text-warning bg-success border-0 text-center">{formatTimestamp(note.startedAt)}</small>
+ <small className="note-time text-irinotes-time bg-irinotes-headers border-0 text-center">{formatTimestamp(note.startedAt)}</small>
<small className="note-length font-weight-bold px-2 text-muted text-center">{_.words(note.plain).length} mots</small>
- <small className="note-time text-warning bg-success border-0 text-center">{formatTimestamp(note.finishedAt)}</small>
+ <small className="note-time text-irinotes-time bg-irinotes-headers border-0 text-center">{formatTimestamp(note.finishedAt)}</small>
</a>
</li>
)}