--- a/client/src/components/Session.js Wed Jun 14 16:08:31 2017 +0200
+++ b/client/src/components/Session.js Wed Jun 14 18:23:18 2017 +0200
@@ -66,27 +66,29 @@
return (
<div>
<Navbar history={this.props.history} />
- <Grid fluid>
- <Row>
- <Col md={3}>
- <Panel>
- { this.renderForm() }
- </Panel>
- </Col>
- <Col md={9}>
- <NotesList notes={this.props.notes} />
- </Col>
- </Row>
- </Grid>
- <section className="editor-fixed">
- <Grid fluid>
+ <div className="session-container">
+ <Grid fluid className="session-notes">
<Row>
- <Col md={9} mdOffset={3}>
- <NoteInput session={this.props.currentSession} addNote={this.props.notesActions.addNote} />
+ <Col md={3}>
+ <Panel>
+ { this.renderForm() }
+ </Panel>
+ </Col>
+ <Col md={9}>
+ <NotesList notes={this.props.notes} />
</Col>
</Row>
</Grid>
- </section>
+ <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>
</div>
);
}