diff --git a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
index 7e8ca6e95..1fdf1677e 100644
--- a/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
+++ b/frontend/src/app/components/liquid-reserves-audit/federation-utxos-list/federation-utxos-list.component.html
@@ -49,7 +49,7 @@
Transaction | +Date | Amount | Fund / Redemption Tx | BTC Address | -Date |
+ |
0, 'debit': peg.amount < 0}">
|
-
- |
+ {{ peg.blocktime * 1000 | date:'yyyy-MM-dd HH:mm' }}
+ (
+ |
0, 'debit': peg.amount < 0}">
|
@@ -75,10 +79,6 @@
-
- {{ peg.blocktime * 1000 | date:'yyyy-MM-dd HH:mm' }}
- (
- |
- | + | - | + | @@ -101,6 +101,9 @@ | + | + + | @@ -110,9 +113,6 @@ | - | - - | diff --git a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss index 6efdaaf5c..92f5bc64f 100644 --- a/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss +++ b/frontend/src/app/components/liquid-reserves-audit/recent-pegs-list/recent-pegs-list.component.scss @@ -28,14 +28,14 @@ tr, td, th { } .transaction { - width: 25%; + width: 20%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 120px; } .transaction.widget { - width: 40%; + width: 100%; } @@ -50,19 +50,16 @@ tr, td, th { } .amount { - width: 12%; -} -.amount.widget { - width: 30%; + width: 0%; } .output { - width: 25%; + width: 20%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; - @media (max-width: 825px) { + @media (max-width: 800px) { display: none; } } @@ -72,13 +69,13 @@ tr, td, th { text-overflow: ellipsis; white-space: nowrap; max-width: 160px; - @media (max-width: 840px) { + @media (max-width: 960px) { display: none; } } .timestamp { - width: 18%; + width: 0%; @media (max-width: 650px) { display: none; } @@ -89,7 +86,6 @@ tr, td, th { } } .timestamp.widget { - width: 100%; @media (min-width: 768px) AND (max-width: 1050px) { display: none; }
---|