Skip to content

Commit

Permalink
animate incoming requests
Browse files Browse the repository at this point in the history
  • Loading branch information
samsiegart committed Sep 16, 2021
1 parent 83340e2 commit 6578d8a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/dapp-svelte-wallet/ui/src/Request.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
border: 1px solid #e0e0e0;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin-bottom: 16px;
animation: expand 0.4s;
}
.summary {
Expand All @@ -24,6 +25,15 @@
padding: 8px 0;
border-bottom: 1px solid #eeeeee;
}
@keyframes expand {
0% {
transform: scale(0.0);
}
100% {
transform: scale(1.0)
}
}
</style>

<div class="container">
Expand Down

0 comments on commit 6578d8a

Please sign in to comment.