Fix dropdowns scroll display (#15199)

I'm applying the scrollbar styling to dropdowns
This commit is contained in:
Charles Bochet
2025-10-20 11:08:32 +02:00
committed by GitHub
parent 3089da5657
commit 842c6e6905
@@ -28,6 +28,12 @@ const StyledScrollableContainer = styled.div<{ maxHeight?: number }>`
width: 100%;
overflow-y: auto;
scrollbar-color: ${({ theme }) => theme.border.color.medium} transparent;
scrollbar-width: 4px;
*::-webkit-scrollbar-thumb {
border-radius: ${({ theme }) => theme.border.radius.sm};
}
`;
const StyledInternalContainer = styled.div`