diff --git a/frontend/src/app/dashboard/dashboard.component.html b/frontend/src/app/dashboard/dashboard.component.html
index 90ec01e1d..3faef5a83 100644
--- a/frontend/src/app/dashboard/dashboard.component.html
+++ b/frontend/src/app/dashboard/dashboard.component.html
@@ -76,16 +76,16 @@
- Latest Replacements
+ Latest replacements
TXID |
- Old fee |
+ Previous fee |
New fee |
- |
+ Status |
diff --git a/frontend/src/app/dashboard/dashboard.component.scss b/frontend/src/app/dashboard/dashboard.component.scss
index 5633a3c7e..f1e835d9c 100644
--- a/frontend/src/app/dashboard/dashboard.component.scss
+++ b/frontend/src/app/dashboard/dashboard.component.scss
@@ -189,20 +189,30 @@
width: 25%;
}
.table-cell-txid {
- width: 33%;
+ width: 25%;
text-align: start;
}
.table-cell-old-fee {
- width: 33%;
+ width: 25%;
text-align: end;
+
+ @media(max-width: 1080px) {
+ display: none;
+ }
}
.table-cell-new-fee {
- width: 33%;
+ width: 20%;
text-align: end;
}
.table-cell-badges {
- width: 25%;
+ width: 23%;
+ padding-right: 0;
+ padding-left: 5px;
text-align: end;
+
+ .badge {
+ margin-left: 5px;
+ }
}
}