You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/home/fee-info/fee-info.component.html

15 lines
589 B
HTML

<div fxLayout="column" fxFlex="100" fxLayoutAlign="space-between stretch">
<div>
<h4 fxLayoutAlign="start" class="dashboard-info-title">Daily</h4>
<div class="dashboard-info-value">{{fees?.day_fee_sum | number}} Sats</div>
</div>
<div>
<h4 fxLayoutAlign="start" class="dashboard-info-title">Weekly</h4>
<div class="dashboard-info-value">{{fees?.week_fee_sum | number}} Sats</div>
</div>
<div>
<h4 fxLayoutAlign="start" class="dashboard-info-title">Monthly</h4>
<div class="dashboard-info-value">{{fees?.month_fee_sum | number}} Sats</div>
</div>
</div>