From 652f88770e655992c398629879fb1f58928b2e11 Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Wed, 7 Jul 2021 16:20:17 -0300 Subject: [PATCH] Fix mouse over tooltip width. (#614) --- .../app/components/fees-box/fees-box.component.html | 12 ++++++------ frontend/src/styles.scss | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/components/fees-box/fees-box.component.html b/frontend/src/app/components/fees-box/fees-box.component.html index 9fe2e66e3..a00ca4395 100644 --- a/frontend/src/app/components/fees-box/fees-box.component.html +++ b/frontend/src/app/components/fees-box/fees-box.component.html @@ -2,20 +2,20 @@
Low priority
-
-
{{ feeEstimations.hourFee }} sat/vB
+
+
{{ feeEstimations.hourFee }} sat/vB
Medium priority
-
-
{{ feeEstimations.halfHourFee }} sat/vB
+
+
{{ feeEstimations.halfHourFee }} sat/vB
High priority
-
-
{{ feeEstimations.fastestFee }} sat/vB
+
+
{{ feeEstimations.fastestFee }} sat/vB
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 4d1d5072c..5b6f6b9d4 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -692,4 +692,10 @@ th { padding-left: 5px; } } +} + +.fee-estimation-wrapper { + .tooltip.show { + width: 220px; + } } \ No newline at end of file