Skip to content

Commit

Permalink
fix: fix Material combo box overlay sizing (#8619)
Browse files Browse the repository at this point in the history
  • Loading branch information
sissbruecker authored Feb 3, 2025
1 parent 319f097 commit cc9555a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themab
const comboBoxOverlay = css`
[part='overlay'] {
position: relative;
overflow: visible;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
/* Overflow needs to be auto by default to make overlay sizing logic work */
/* When loading, overflow needs to be visible to make loading indicator visible */
:host([loading]) [part='overlay'] {
overflow: visible;
}
[part='content'] {
padding: 0;
}
Expand Down

0 comments on commit cc9555a

Please sign in to comment.