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

* Fix styles

* Update changelog
This commit is contained in:
Thomas Kaul
2023-04-17 14:09:55 +02:00
committed by GitHub
parent 922876a893
commit fccbd76993
5 changed files with 3 additions and 14 deletions

View File

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

View File

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

View File

@@ -153,7 +153,7 @@
</mat-form-field>
<button
*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
title="Apply current market price"
type="button"

View File

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