Bugfix/fix scrolling issue in position detail dialog on mobile (#593)

* Fix scrolling in position detail dialog on mobile

* Update changelog
This commit is contained in:
Thomas Kaul
2021-12-29 10:51:11 +01:00
committed by GitHub
parent 6e8c90b3fc
commit e37a650c70
3 changed files with 10 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
<button
*ngIf="deviceType === 'mobile'"
class="mt-2"
mat-button
(click)="onClickCloseButton()"
>

View File

@@ -1,4 +1,7 @@
:host {
display: flex;
flex: 0 0 auto;
margin-bottom: 0;
min-height: 0;
padding: 0;
}