Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Mar 19, 2024
1 parent 082f802 commit 3c0b6fa
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,9 @@ const MinimalAssetNodeBox = styled.div<{
`
: ''}
${(p) => {
if (p.$isQueued) {
return `
${(p) =>
p.$isQueued
? `
animation: pulse 0.5s infinite alternate;
@keyframes pulse {
0% {
Expand All @@ -383,10 +383,8 @@ const MinimalAssetNodeBox = styled.div<{
border-color: ${Colors.replaceAlpha(p.$border, 1)};
}
}
`;
}
return '';
}}
`
: ''}
border-radius: 16px;
position: relative;
padding: 2px;
Expand Down

0 comments on commit 3c0b6fa

Please sign in to comment.