Skip to content

Commit

Permalink
#2 update on DropZone
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonatan Salas committed Aug 11, 2016
1 parent 1321aea commit 6b97492
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/common/DropZone.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export default class DropZone extends Component {

if (!className && !style && !activeStyle && !rejectStyle) {
style = {
backgroundColor: "#f5f5f5",
backgroundColor: "#fafafa",
width: 'auto',
borderWidth: 1,
borderColor: '#757575',
Expand All @@ -200,11 +200,11 @@ export default class DropZone extends Component {
};
activeStyle = {
borderStyle: 'solid',
backgroundColor: '#f5f5f5'
backgroundColor: '#fafafa'
};
rejectStyle = {
borderStyle: 'solid',
backgroundColor: '#f5f5f5'
backgroundColor: '#fafafa'
};
}

Expand Down

0 comments on commit 6b97492

Please sign in to comment.