Skip to content

Commit

Permalink
Merge pull request #222 from Cognifide/bugfix/styling-widget-edit-popup
Browse files Browse the repository at this point in the history
animate save button
  • Loading branch information
frontendpm authored Jan 14, 2020
2 parents 4ab0dac + 17d07c2 commit 4c134f1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions cogboard-webapp/src/components/MainTemplate/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,22 @@ export const StyledActions = styled(Box)`

export const StyledSaveFab = styled(Fab)`
margin-right: 16px;
animation: pulse 2s infinite;
@keyframes pulse {
0% {
opacity: 0.7;
box-shadow: 0 0 0 0 rgba(28, 38, 48, 0.4);
}
70% {
opacity: 1;
box-shadow: 0 0 0 10px rgba(28, 38, 48, 0);
}
100% {
opacity: 0.7;
box-shadow: 0 0 0 0 rgba(28, 38, 48, 0);
}
}
`;

export const StyledBoardList = styled(BoardList)`
Expand Down

0 comments on commit 4c134f1

Please sign in to comment.