fix(night-mode): Update indenting and change border color

This commit is contained in:
Mrugesh Mohapatra
2017-01-06 11:55:08 +05:30
parent e1261526d8
commit f262bfd960
3 changed files with 42 additions and 42 deletions

View File

@ -1129,7 +1129,7 @@ code {
}
.btn-primary {
background-color: @brand-primary;
border-color: #292929;
border-color: #777;
color:#CCC;
transition: color 0.2s, background-color 0.2s;
&:hover {

View File

@ -1,8 +1,8 @@
import React, {PropTypes} from 'react';
import {Button, Row, Col} from 'react-bootstrap';
import React, { PropTypes } from 'react';
import { Button, Row, Col } from 'react-bootstrap';
import classnames from 'classnames';
export default function LockSettings({isLocked, toggle}) {
export default function LockSettings({ isLocked, toggle }) {
const className = classnames({
'positive-20': true,
active: isLocked,