Skip to content

Commit

Permalink
Fix missing theme text color switch
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Jun 7, 2024
1 parent 0091743 commit e890743
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h4 class="modal-title settings-modal-text">{{snippetService.getSnippet('authent
<div [innerHTML]="snippetService.getSnippet('authentication-modal.authentication-info', statsService.coinConfig.cliCommandPrefix, statsService.coinConfig.hdKeyPoolPublicKeyPath, message)"></div>
</div>
</div>
<div class="col-12 text-color">
<div class="col-12 settings-modal-text">
<span [innerHTML]="snippetService.getSnippet('authentication-modal.authentication-guide', docsAuthenticationGuideUrl)"></span>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
.text-color {
color: #474747;
}
2 changes: 1 addition & 1 deletion src/app/leave-pool-modal/leave-pool.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ <h5 class="settings-modal-text">{{snippetService.getSnippet('leave-pool-modal.ti
<div class="col-12" *ngIf="haveCollateral">
<div class="form-check checkbox-lg" style="padding-bottom: 1rem">
<input class="form-check-input" type="checkbox" id="leaveForEverCheckbox" [(ngModel)]="leaveForEver">
<label class="form-check-label text-color" for="leaveForEverCheckbox">
<label class="form-check-label settings-modal-text" for="leaveForEverCheckbox">
{{ snippetService.getSnippet('leave-pool-modal.leave-forever') }}
</label>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/app/leave-pool-modal/leave-pool.component.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
.text-color {
color: #474747;
}
.checkbox-lg .form-check-input {
width: 1.35rem;
height: 1.35rem;
Expand Down

0 comments on commit e890743

Please sign in to comment.