Skip to content
This repository has been archived by the owner on Jan 31, 2019. It is now read-only.

Commit

Permalink
Fixes #21 merge to master
Browse files Browse the repository at this point in the history
  • Loading branch information
3lang3 committed Jun 8, 2017
1 parent c7b7d33 commit 0dc9a08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/Recommend/Recommend.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

.outerWrapper {
opacity: 0;
animation: zoomIn 1.5s ease forwards;
animation: zoomIn 2s ease forwards;
width: 100%;
height: 100%;
}
Expand Down Expand Up @@ -73,6 +73,6 @@
}

@keyframes zoomIn {
from {opacity: 0; transform: scale(1.05) }
to {opacity: 1; transform: scale(1)}
from {opacity: 0; transform: scale(1.02); filter: grayscale(1); }
to {opacity: 1; transform: scale(1); filter: grayscale(0);}
}
2 changes: 1 addition & 1 deletion src/components/Recommend/Recommend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Recommend extends React.Component {
</div>
</Scrollbars>
</div>
: <div className={styles.empty}><Spinner /></div>
: <div className={styles.empty}><Spinner color="#fff" /></div>
}

</div>
Expand Down
2 changes: 1 addition & 1 deletion src/reducers/layouts.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default (state = initialState, action) => {
case layoutsActions.CHAT:
return {
...state,
chat: action.payload
chat: action.payload || !state.chat
}

default:
Expand Down

0 comments on commit 0dc9a08

Please sign in to comment.