Skip to content

Commit

Permalink
Merge pull request #2354 from aura-nw/baseline/main_20230920
Browse files Browse the repository at this point in the history
Baseline/main 20230920
  • Loading branch information
nhphuc2411 authored Sep 20, 2023
2 parents 6ef1f8d + a588780 commit c28a3ad
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,6 @@
<th mat-header-cell *matHeaderCellDef class="">PRICE</th>
<td mat-cell *matCellDef="let element">
<span *ngIf="element.price > 0; else defaultValues">${{ +element.price | mask : 'separator.6' }}</span>
<span
class="text--gray-5"
*ngIf="global.price.aura && element.price > 0 && coinMiniDenom !== element.denom">
(<span
*ngIf="element.contract_address !== '-'"
[appBigNumber]="element.price"
[auraValue]="true"
[decimal]="0"></span>
<span> {{ denom }}</span
>)
</span>
</td>
</ng-container>

Expand Down Expand Up @@ -172,18 +161,6 @@
[decimal]="element.decimals"
[tokenPrice]="element.price"></div>
</span>
<span
class="text--gray-5"
*ngIf="global.price.aura && element.price > 0 && coinMiniDenom !== element.denom">
(<span
*ngIf="element.contract_address !== '-'"
[appBigNumber]="element.balance"
[auraValue]="true"
[tokenPrice]="element.price"
[decimal]="element.decimals"></span>
<span> {{ denom }}</span
>)
</span>
</td>
</ng-container>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.contract-address {
width: 125px;
}

.aura__change {
font-size: 1.4rem;
line-height: 1.8rem;
Expand All @@ -14,29 +15,36 @@
}
}
}

.box-search-data {
min-width: 410px;

.box-search-token {
max-height: 350px;
width: 90%;

@media (min-width: 992px) {
width: 410px;
}

.logo-token {
margin-top: 3px;
width: 20px;
height: 20px;
}

.box-price {
background-color: rgba(94, 230, 208, 0.2);
border-radius: 4px;
color: var(--aura-green);
padding: 2px 6px;
margin-left: 8px;
}

.search-result {
border: 1px solid transparent;
transition: border-color 0.35s ease-in-out;

&:hover {
border: 1px solid var(--aura-primary);
border-radius: 4px;
Expand All @@ -55,11 +63,10 @@
min-width: 175px;
}

@media (max-width: 991.99px) {
.aura-table th.mat-header-cell {
min-width: 150px;
}
.aura-table th.mat-header-cell:nth-child(3) {
min-width: 200px;
}
.aura-table th.mat-header-cell {
min-width: 150px;
}

.aura-table th.mat-header-cell:nth-child(3) {
min-width: 200px;
}

0 comments on commit c28a3ad

Please sign in to comment.