1
0
mirror of https://github.com/SomboChea/ui synced 2024-11-05 14:14:26 +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)` export const SuggestionContainer = styled(Paper)`
&& { && {
max-height: 500px; max-height: 500px;
overflow-y: scroll; overflow-y: auto;
} }
`; `;