--- 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>
);
}