Feature/restructure fire page (#982)

* Restructure fire page

* Update changelog
pull/985/head
Thomas Kaul 3 years ago committed by GitHub
parent 565947e752
commit 6774c48dff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Simplified the features page - Simplified the features page
- Restructured the _FIRE_ section
- Upgraded `@simplewebauthn/browser` and `@simplewebauthn/server` from version `4.1.0` to `5.2.1` - Upgraded `@simplewebauthn/browser` and `@simplewebauthn/server` from version `4.1.0` to `5.2.1`
## 1.155.0 - 29.05.2022 ## 1.155.0 - 29.05.2022

@ -1,8 +1,22 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row mb-5">
<div class="col-lg"> <div class="col-lg">
<h3 class="d-flex justify-content-center mb-3" i18n>FIRE</h3> <h3 class="d-flex justify-content-center mb-3" i18n>FIRE</h3>
<div class="mb-5"> <div>
<h4 class="mb-3" i18n>Calculator</h4>
<gf-fire-calculator
[currency]="user?.settings?.baseCurrency"
[deviceType]="deviceType"
[fireWealth]="fireWealth?.toNumber()"
[hasPermissionToUpdateUserSettings]="hasPermissionToUpdateUserSettings"
[locale]="user?.settings?.locale"
[savingsRate]="user?.settings?.savingsRate"
(savingsRateChanged)="onSavingsRateChange($event)"
></gf-fire-calculator>
</div>
</div>
</div>
<div>
<h4 i18n>4% Rule</h4> <h4 i18n>4% Rule</h4>
<div *ngIf="isLoading"> <div *ngIf="isLoading">
<ngx-skeleton-loader <ngx-skeleton-loader
@ -52,17 +66,3 @@
</div> </div>
</div> </div>
</div> </div>
</div>
<div>
<h4 class="mb-3" i18n>Calculator</h4>
<gf-fire-calculator
[currency]="user?.settings?.baseCurrency"
[deviceType]="deviceType"
[fireWealth]="fireWealth?.toNumber()"
[hasPermissionToUpdateUserSettings]="hasPermissionToUpdateUserSettings"
[locale]="user?.settings?.locale"
[savingsRate]="user?.settings?.savingsRate"
(savingsRateChanged)="onSavingsRateChange($event)"
></gf-fire-calculator>
</div>
</div>

@ -1,7 +1,7 @@
<div class="container p-0"> <div class="container p-0">
<div class="row"> <div class="row">
<div class="col-md-3"> <div class="col-md-3">
<form class="" [formGroup]="calculatorForm"> <form class="mb-4" [formGroup]="calculatorForm">
<!--<mat-form-field appearance="outline"> <!--<mat-form-field appearance="outline">
<input formControlName="principalInvestmentAmount" matInput /> <input formControlName="principalInvestmentAmount" matInput />
</mat-form-field>--> </mat-form-field>-->

Loading…
Cancel
Save