client/src/components/Session.js
changeset 33 238818343253
parent 30 4d93f4ed95bc
child 34 6c920486de81
--- a/client/src/components/Session.js	Wed Jun 14 15:29:01 2017 +0200
+++ b/client/src/components/Session.js	Wed Jun 14 16:06:40 2017 +0200
@@ -75,11 +75,18 @@
             </Col>
             <Col md={9}>
               <NotesList notes={this.props.notes} />
-              <hr />
-              <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
             </Col>
           </Row>
         </Grid>
+        <section className="editor-fixed">
+          <Grid fluid>
+            <Row>
+              <Col md={9} mdOffset={3}>
+                <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
+              </Col>
+            </Row>
+          </Grid>
+        </section>
       </div>
     );
   }