Disabling liquid test and fixing liquid overflow

This commit is contained in:
softsimon
2024-06-20 17:43:54 +09:00
parent 5cecd9f8a7
commit 1219526e2d
3 changed files with 3 additions and 24 deletions

View File

@@ -22,7 +22,7 @@
<div class="row">
@if (isMobile) {
<div class="col-sm">
<table class="table table-borderless table-striped">
<table class="table table-borderless table-striped address-table">
<tbody>
<ng-container *ngTemplateOutlet="balanceRow"></ng-container>
<ng-container *ngTemplateOutlet="pendingBalanceRow"></ng-container>
@@ -39,7 +39,7 @@
</div>
} @else {
<div class="col-sm">
<table class="table table-borderless table-striped table-fixed">
<table class="table table-borderless table-striped table-fixed address-table">
<tbody>
<ng-container *ngTemplateOutlet="balanceRow"></ng-container>
<ng-container *ngTemplateOutlet="utxoRow"></ng-container>
@@ -52,7 +52,7 @@
</table>
</div>
<div class="col-sm">
<table class="table table-borderless table-striped table-fixed">
<table class="table table-borderless table-striped table-fixed address-table">
<tbody>
<ng-container *ngTemplateOutlet="pendingBalanceRow"></ng-container>
<ng-container *ngTemplateOutlet="pendingUtxoRow"></ng-container>

View File

@@ -98,13 +98,6 @@ h1 {
.liquid-address {
.address-table {
table-layout: fixed;
tr td:first-child {
width: 170px;
}
tr td:last-child {
width: 80%;
}
}
}