Progress on moving color styles to Sass
This commit is contained in:
parent
942a2e7d68
commit
c424df5192
22 changed files with 340 additions and 235 deletions
|
|
@ -29,13 +29,6 @@ const scrollTop = (node) => {
|
|||
};
|
||||
};
|
||||
|
||||
const style = {
|
||||
boxSizing: 'border-box',
|
||||
background: '#282c37',
|
||||
display: 'flex',
|
||||
flexDirection: 'column'
|
||||
};
|
||||
|
||||
const Column = React.createClass({
|
||||
|
||||
propTypes: {
|
||||
|
|
@ -67,7 +60,7 @@ const Column = React.createClass({
|
|||
}
|
||||
|
||||
return (
|
||||
<div className='column' style={style} onWheel={this.handleWheel}>
|
||||
<div className='column' onWheel={this.handleWheel}>
|
||||
{header}
|
||||
{children}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue