client/src/components/Session.js
changeset 143 cfcbf4bc66f1
parent 138 a1fb2ced3049
child 151 57d63a248f0d
--- a/client/src/components/Session.js	Wed Jul 18 17:32:09 2018 +0200
+++ b/client/src/components/Session.js	Tue Aug 14 20:34:50 2018 +0200
@@ -1,7 +1,6 @@
 import React, { Component } from 'react';
 import { connect } from 'react-redux';
 import { bindActionCreators } from 'redux';
-import { Grid, Row, Col } from 'react-bootstrap';
 import '../App.css';
 import Navbar from './Navbar';
 import NoteInput from './NoteInput';
@@ -37,18 +36,18 @@
             </div>
           </div>
           <section className="editor-fixed">
-            <Grid fluid>
-              <Row>
-                <Col md={9} mdOffset={3}>
+            <div className="container-fluid">
+              <div className="row">
+                <div className="col-md-9 col-md-offset-3">
                   <NoteInput
                     session={this.props.currentSession}
                     autoSubmit={this.props.autoSubmit}
                     addNote={this.props.notesActions.addNote}
                     setAutoSubmit={this.props.userActions.setAutoSubmit}
                     annotationCategories={this.props.annotationCategories}/>
-                </Col>
-              </Row>
-            </Grid>
+                </div>
+              </div>
+            </div>
           </section>
         </div>
       </div>