Browse Source

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
commit
e37a650c70
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 1
      apps/client/src/app/components/dialog-footer/dialog-footer.component.html
  3. 3
      apps/client/src/app/components/dialog-footer/dialog-footer.component.scss

6
CHANGELOG.md

@ -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
apps/client/src/app/components/dialog-footer/dialog-footer.component.html

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

3
apps/client/src/app/components/dialog-footer/dialog-footer.component.scss

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

Loading…
Cancel
Save