[accelerator] fix overflow in tx page integrated accel

This commit is contained in:
nymkappa 2023-08-26 10:05:04 +02:00
parent 1ca136fa75
commit 1fe08d1234
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
2 changed files with 9 additions and 2 deletions

View File

@ -24,7 +24,7 @@
<div [class]="{estimateDisabled: error}">
<div class="row mb-3">
<div class="col">
<table class="table table-borderless table-border table-dark">
<table class="table table-borderless table-border table-dark table-accelerator">
<tbody>
<!-- NEXT BLOCK TX FEE -->
<tr>
@ -110,7 +110,7 @@
<h6>Acceleration summary</h6>
<div class="row mb-3">
<div class="col">
<table class="table table-borderless table-border table-dark">
<table class="table table-borderless table-border table-dark table-accelerator">
<tbody>
<!-- USER MAX BID -->
<tr>

View File

@ -18,3 +18,10 @@
opacity: 0.5;
pointer-events: none;
}
.table-accelerator {
table-layout: fixed;
& tr {
text-wrap: wrap;
}
}