Skip to content

Commit

Permalink
UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sairaj-mote committed Oct 3, 2023
1 parent fc2dafa commit 8f0de4b
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 27 deletions.
11 changes: 7 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ h3 {

#transaction_result {
display: grid;
gap: 0.5rem;
gap: 1.5rem;
height: max(40vh, 24rem);
align-items: center;
justify-content: center;
Expand All @@ -1004,7 +1004,7 @@ h3 {
text-align: center;
width: 100%;
}
#transaction_result .icon {
#transaction_result > .icon {
justify-self: center;
height: 4rem;
width: 4rem;
Expand All @@ -1013,18 +1013,21 @@ h3 {
-webkit-animation: popup 1s;
animation: popup 1s;
}
#transaction_result .icon--success {
#transaction_result > .icon--success {
fill: rgba(var(--background-color), 1);
padding: 1rem;
background-color: #0bbe56;
}
#transaction_result .icon--failed {
#transaction_result > .icon--failed {
background-color: rgba(var(--text-color), 0.03);
fill: var(--danger-color);
}
#transaction_result sm-copy {
font-size: 0.8rem;
}
#transaction_result #transaction_link {
justify-self: center;
}

@-webkit-keyframes popup {
0% {
Expand Down
Loading

0 comments on commit 8f0de4b

Please sign in to comment.