mirror of
https://github.com/mempool/mempool.git
synced 2026-08-18 13:08:44 +02:00
Fix Liquid UTXOs table color
This commit is contained in:
parent
8310ad9f24
commit
65705a8a1d
1 changed files with 2 additions and 2 deletions
|
|
@ -122,8 +122,8 @@ export class FederationUtxosListComponent implements OnInit {
|
|||
|
||||
getGradientColor(value: number): string {
|
||||
const distanceToGreen = Math.abs(4032 - value);
|
||||
const green = 'var(--green)';
|
||||
const red = 'var(--red)';
|
||||
const green = '#3bcc49';
|
||||
const red = '#dc3545';
|
||||
|
||||
if (value < 0) {
|
||||
return red;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue