fix(night-mode): Update indenting and change border color
This commit is contained in:
@ -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 {
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user