Skip to content

Commit

Permalink
fix(date-picker-range): make inputs take the whole available space (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
weronikaolejniczak authored Oct 8, 2024
1 parent 96b19ff commit 2f82ffe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
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

0 comments on commit 2f82ffe

Please sign in to comment.