diff --git a/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html b/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html
index 515a199ff..1ce224760 100644
--- a/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html
+++ b/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.html
@@ -5,25 +5,33 @@
[style.left]="tooltipPosition.x + 'px'"
[style.top]="tooltipPosition.y + 'px'"
>
- {{ rbfInfo.tx.txid | shortenString : 24 }}
-
+
- First seen |
+ Transaction |
+
+ {{ rbfInfo.tx.txid | shortenString : 16}}
+ |
+
+
+ First seen |
|
- Fee |
+ Fee |
{{ rbfInfo.tx.fee | number }} sat |
- Virtual size |
+ Virtual size |
|
- RBF
- RBF
- Mined
+ Status |
+
+ RBF
+ RBF
+ Mined
+ |
diff --git a/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.scss b/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.scss
index 4e202f1ec..cd31aa562 100644
--- a/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.scss
+++ b/frontend/src/app/components/rbf-timeline/rbf-timeline-tooltip.component.scss
@@ -5,23 +5,12 @@
border-radius: 4px;
box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
color: #b1b1b1;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
padding: 10px 15px;
text-align: left;
pointer-events: none;
- max-width: 300px;
-
- p {
- margin: 0;
- white-space: nowrap;
- }
-
- table tr td {
- padding: 0;
-
- &:last-child {
- text-align: right;
- }
- }
.badge {
margin-right: 1em;
@@ -29,4 +18,8 @@
margin-right: 0;
}
}
+}
+
+.td-width {
+ padding-right: 10px;
}
\ No newline at end of file