Some new animations in cart

Long addresses will be capped (copy will come in next commit)
This commit is contained in:
2021-01-24 19:58:02 +01:00
parent 59ebcb54c6
commit 03227b8b0f
8 changed files with 144 additions and 29 deletions

View File

@@ -6,6 +6,7 @@
background-color: #1c1c1c;
border-radius: 8px;
transform: translateY(-8px);
overflow: hidden;
}
/* Apply effect when invoice expired */
@@ -91,15 +92,20 @@
/* Data */
.main .data {
display: grid;
grid-template-columns: 1fr 50px;
grid-template-rows: 1fr 4rem 4rem 4rem 1fr;
grid-template-columns: 1fr;
grid-template-rows: 1fr auto auto auto 1fr;
row-gap: 10px;
width: 500px;
}
.main #target {
#target {
grid-row: 2;
}
#amount {
grid-row: 3;
}
#status {
grid-row: 4;
}