Bugfix/fix style of apply current market price button (#1866)

* Fix styles

* Update changelog
pull/1868/head
Thomas Kaul 2 years ago committed by GitHub
parent 922876a893
commit fccbd76993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed the unique job ids of the gather asset profile process - Fixed the unique job ids of the gather asset profile process
- Fixed the style of the button to fetch the current market price
## 1.255.0 - 2023-04-15 ## 1.255.0 - 2023-04-15

@ -33,7 +33,7 @@
<span class="ml-2" matTextSuffix>{{ data.currency }}</span> <span class="ml-2" matTextSuffix>{{ data.currency }}</span>
</mat-form-field> </mat-form-field>
<button <button
class="apply-current-market-price ml-2 no-min-width" class="ml-2 mt-1 no-min-width"
mat-button mat-button
title="Fetch market price" title="Fetch market price"
(click)="onFetchSymbolForDate()" (click)="onFetchSymbolForDate()"

@ -3,11 +3,5 @@
.mat-mdc-dialog-content { .mat-mdc-dialog-content {
max-height: unset; max-height: unset;
.mat-mdc-button {
&.apply-current-market-price {
height: 56px;
}
}
} }
} }

@ -153,7 +153,7 @@
</mat-form-field> </mat-form-field>
<button <button
*ngIf="currentMarketPrice && (data.activity.type === 'BUY' || data.activity.type === 'SELL')" *ngIf="currentMarketPrice && (data.activity.type === 'BUY' || data.activity.type === 'SELL')"
class="apply-current-market-price ml-2 no-min-width" class="ml-2 mt-1 no-min-width"
mat-button mat-button
title="Apply current market price" title="Apply current market price"
type="button" type="button"

@ -15,12 +15,6 @@
color: var(--dark-primary-text); color: var(--dark-primary-text);
} }
} }
.mat-mdc-button {
&.apply-current-market-price {
height: 56px;
}
}
} }
} }

Loading…
Cancel
Save