Skip to content

Commit

Permalink
Fix Flyout scrolling in Safari (#2033)
Browse files Browse the repository at this point in the history
* Add height CSS properties

* Update CHANGELOG

* Update CHANGELOG.md

Co-Authored-By: Caroline Horn <[email protected]>
  • Loading branch information
Kerry350 and cchaos authored Jun 13, 2019
1 parent 1bede52 commit 1479c81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

**Bug fixes**

- Fixed `EuiFlyout` scrolling in Safari ([#2033](https://github.com/elastic/eui/pull/2033))
- Fixed `EuiCallOut` header icon alignment ([#2006](https://github.com/elastic/eui/pull/2006))
- Fixed `EuiInMemoryTable` sort value persistence through lifecycle updates ([#2035](https://github.com/elastic/eui/pull/2035))

Expand Down
1 change: 1 addition & 0 deletions src/components/flyout/_flyout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
top: 0;
bottom: 0;
right: 0;
height: 100%;
z-index: $euiZModal;
background: $euiColorEmptyShade;
animation: euiFlyout $euiAnimSpeedNormal $euiAnimSlightResistance;
Expand Down
1 change: 1 addition & 0 deletions src/components/flyout/_flyout_body.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
@include euiOverflowShadow;
flex-grow: 1;
overflow-y: hidden;
height: 100%;

.euiFlyoutBody__overflow {
@include euiScrollBar;
Expand Down

0 comments on commit 1479c81

Please sign in to comment.