Skip to content

Commit

Permalink
Do not wrap header row items
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Oct 20, 2023
1 parent d416181 commit 9d128a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/currency-selector/currency-selector.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="input-group">
<div class="input-group flex-nowrap">
<select class="form-select currency-select input-field" [ngModel]="configService.selectedCurrencySubject | async" (ngModelChange)="configService.selectedCurrencySubject.next($event)">
<option *ngFor="let currency of ratesService.currencies" [ngValue]="currency" class="currency-select-option">{{ currency.toUpperCase() }}</option>
</select>
Expand Down
2 changes: 1 addition & 1 deletion src/app/header/header.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<button class="btn btn-outline-danger logout-button" (click)="accountService.logout()">{{snippetService.getSnippet('header-component.button.logout')}}</button>
</div>
<div class="header-row-item" *ngIf="showJoinPoolButton">
<a class="btn btn-primary text-decoration-none" [href]="joinPoolUrl" target="_blank">
<a class="btn btn-primary text-decoration-none no-wrap" [href]="joinPoolUrl" target="_blank">
Join Pool
</a>
</div>
Expand Down

0 comments on commit 9d128a8

Please sign in to comment.