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

* Fix scrolling in position detail dialog on mobile

* Update changelog
pull/594/head^2
Thomas Kaul 3 years ago committed by GitHub
parent 6e8c90b3fc
commit e37a650c70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Fixed the scrolling issue in the position detail dialog on mobile
## 1.97.0 - 28.12.2021
### Added

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

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

Loading…
Cancel
Save