Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- Fixed `EuiFieldNumber` so values of type `number` are now allowed ([#3020](https://github.com/elastic/eui/pull/3020))
- Fixed SASS `contrastRatio()` function in dark mode by fixing the `pow()` math function ([#3013], (https://github.com/elastic/eui/pull/3013))
- Fixed bug preventing `EuiDataGrid` from re-evaluating the default column width on resize ([#2991](https://github.com/elastic/eui/pull/2991))
- Fixed padding in `EuiCallOut` when used as a `banner` for `EuiFlyout` ([#3098](https://github.com/elastic/eui/pull/3098))

## [`21.0.1`](https://github.com/elastic/eui/tree/v21.0.1)

Expand Down
2 changes: 2 additions & 0 deletions src/components/flyout/_flyout_body.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

.euiFlyoutBody__banner .euiCallOut {
border: none; // Remove border from callout when it is a flyout banner
padding-left: $euiSizeL; // Align callout's content with flyout's title
padding-right: $euiSizeL; // Align callout's content with flyout's title
}

.euiFlyoutBody__overflowContent {
Expand Down