Skip to content

Commit

Permalink
Merge branch 'master' into bug/CLAN6-274-change-widget-type
Browse files Browse the repository at this point in the history
  • Loading branch information
szymon-owczarzak authored Jan 14, 2020
2 parents 5dd4d84 + 4c134f1 commit 01de357
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 01de357

Please sign in to comment.