1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-06-01 09:05:06 +07:00

fix: use auto for overflow-y (#57)

This commit is contained in:
Daniel Ruf 2019-05-16 20:38:22 +02:00 committed by Juan Picado @jotadeveloper
parent 980dac5b2f
commit 01da082c06

View File

@ -55,6 +55,6 @@ export const InputField = ({ color, ...others }: IInputField) => (
export const SuggestionContainer = styled(Paper)`
&& {
max-height: 500px;
overflow-y: scroll;
overflow-y: auto;
}
`;