Skip to content

Commit

Permalink
[Fleet - Integrations] Fix overflow of integration card (elastic#194539)
Browse files Browse the repository at this point in the history
## Summary

Hey team, here is a small fix for the shadows not to be cropped in
integrations grid container, based on this request:
[https://github.com/elastic/UX/issues/132](url)
  • Loading branch information
ek-so authored Oct 2, 2024
1 parent 508aacf commit ac743be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const GridColumn = ({
<EuiAutoSizer disableHeight>
{({ width }: { width: number }) => (
<List
style={{ height: '100%' }}
style={{ height: '100%', overflow: 'visible' }}
ref={listRef}
layout="vertical"
itemCount={Math.ceil(list.length / 3)}
Expand Down

0 comments on commit ac743be

Please sign in to comment.