adding price history toggle to transaction details page

This commit is contained in:
sairaj mote 2024-01-25 01:56:49 +05:30
parent c5b61f3c05
commit fca68debf1
5 changed files with 98 additions and 411 deletions

View File

@ -393,6 +393,10 @@ ol li::before {
align-items: flex-start;
}
.align-self-start {
align-self: flex-start;
}
.align-center {
align-items: center;
}
@ -1016,6 +1020,9 @@ transaction-card:not(:last-of-type)::after {
font-weight: 700;
text-wrap: balance;
}
#tx_amount:has(+ *) {
margin-bottom: 0.5rem;
}
#tx_technicals .tx-detail:first-of-type {
position: relative;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -406,6 +406,10 @@ ol {
align-items: flex-start;
}
.align-self-start {
align-self: flex-start;
}
.align-center {
align-items: center;
}
@ -1105,6 +1109,10 @@ transaction-card {
font-size: max(2rem, 4vw);
font-weight: 700;
text-wrap: balance;
&:has(+ *) {
margin-bottom: 0.5rem;
}
}
#tx_technicals {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long