remove dev changes

This commit is contained in:
mathuramg 2016-07-11 09:06:43 -04:00
parent 7f5d83a161
commit 0942378812
4 changed files with 3 additions and 6 deletions

View File

@ -40,8 +40,6 @@ function Preferences(props) {
<Isvg src={plusUrl} alt="Increase Font Size" />
<h6 className="preference__label">Increase</h6>
</button>
</div>
<div className="preference">
@ -60,7 +58,6 @@ function Preferences(props) {
<button className={preferencesTabOptionClass} onClick={props.indentWithTab}>Tabs</button>
</div>
</div>
</div>
);
}

View File

@ -48,7 +48,7 @@
border: 1px solid $light-button-border-color;
text-align: center;
width: #{48 / $base-font-size}rem;
height: #{48 / $base-font-size}rem;
line-height: #{48 / $base-font-size}rem;
margin: 0 #{20 / $base-font-size}rem;
background-color: $light-button-background-color;
}

View File

@ -62,7 +62,7 @@
"body-parser": "^1.15.1",
"classnames": "^2.2.5",
"codemirror": "^5.14.2",
"connect-mongo": "^1.0.0",
"connect-mongo": "^1.2.0",
"cookie-parser": "^1.4.1",
"dotenv": "^2.0.0",
"eslint-loader": "^1.3.0",

View File

@ -3,7 +3,7 @@ import mongoose from 'mongoose';
import bodyParser from 'body-parser';
import cookieParser from 'cookie-parser';
import session from 'express-session';
const MongoStore = require('connect-mongo/es5')(session);
const MongoStore = require('connect-mongo')(session);
import passport from 'passport';
import path from 'path';