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
4 changes: 4 additions & 0 deletions packages/eui/changelogs/upcoming/8061.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
**Bug fixes**

- Fixed inputs not taking the whole width when passing `fullWidth` as `true` to EuiDatePickerRange component

Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ export const euiDatePickerRangeStyles = {
.euiDatePicker {
${logicalCSS('height', '100%')}
}

/* Needed for the fullWidth prop: makes inputs take the whole available space */
.euiPopover {
flex: 1;
}
`,
};

Expand Down