Skip to content

Commit e694419

Browse files
committed
updated changes from PR
1 parent ae6569d commit e694419

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

assets/theme/parallax.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
z-index: 1;
7272
}
7373

74-
.mdl-button{
75-
background: rgba(158,158,158,.2);
76-
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
74+
.parallax-button{
75+
background: white;
76+
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
7777
border: none;
7878
border-radius: 2px;
7979
color: #000;

src/components/button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default class Button extends React.Component {
1111
} = this.props
1212

1313
return(
14-
<button onClick={onClick} className="mdl-button">{children}</button>
14+
<button onClick={onClick} className="parallax-button">{children}</button>
1515
)
1616
}
1717
}

src/components/file-list-item.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use strict';
22

33
const React = require('react');
4-
const ListItem = require('react-material/components/ListItem');
54

65
const red = '#da2100';
76
const green = '#159600';

src/components/project-list-item.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ class Project extends React.Component {
1010
children
1111
} = this.props;
1212

13+
const liStyle = {
14+
listStyleType: 'none',
15+
padding: "14px 16px 15px"
16+
}
17+
1318
return (
14-
<ListItem icon="folder" onClick={onClick}>
19+
<li styles={liStyle} icon="folder" onClick={onClick}>
1520
{children}
16-
</ListItem>
21+
</li>
1722
);
1823
}
1924
}

0 commit comments

Comments
 (0)