client/src/components/Session.js
changeset 161 a642639dbc07
parent 151 57d63a248f0d
child 162 1fd73fdaf4c6
--- a/client/src/components/Session.js	Mon Oct 08 03:30:54 2018 +0200
+++ b/client/src/components/Session.js	Mon Oct 08 04:09:19 2018 +0200
@@ -2,6 +2,7 @@
 import { connect } from 'react-redux';
 import { bindActionCreators } from 'redux';
 import '../App.css';
+import './Session.css';
 import Navbar from './Navbar';
 import NoteInput from './NoteInput';
 import NotesList from './NotesList';
@@ -21,12 +22,11 @@
         <Navbar history={this.props.history} />
         <div className="session-container">
           <div className="session-notes">
-            <div className="notes-affix">
-              <SessionSummary notes={this.props.notes} />
-            </div>
+          <div className="notes-affix">
+            <SessionSummary notes={this.props.notes} />
+          </div>
             <div className="notes-list">
               <SessionForm session={this.props.currentSession} />
-              <hr />
               <NotesList
                 notes={this.props.notes}
                 deleteNote={this.props.notesActions.deleteNote}
@@ -34,11 +34,11 @@
                 annotationCategories={this.props.annotationCategories}
               />
             </div>
-          </div>
-          <section className="editor-fixed">
+        </div>
+          <section className="editor-fixed pl-5">
             <div className="container-fluid">
               <div className="row">
-                <div className="col-lg-9 offset-md-3">
+                <div className="col-lg-10 offset-md-2">
                   <NoteInput
                     session={this.props.currentSession}
                     autoSubmit={this.props.autoSubmit}