Files
mempool/frontend/src/app/components/rate-unit-selector/rate-unit-selector.component.html
hunicus 2855fff702 Make basic footer refinement
TODO: responsiveness
2023-08-06 16:16:16 +09:00

6 lines
345 B
HTML

<div [formGroup]="rateUnitForm" class="text-small text-center">
<select formControlName="rateUnits" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 100px;" (change)="changeUnits()">
<option *ngFor="let unit of units" [value]="unit.name">{{ unit.label }}</option>
</select>
</div>