From e61a04af4b83d6fe0294c5a433f7a7294822a03a Mon Sep 17 00:00:00 2001 From: Belinda Date: Thu, 6 Jul 2023 12:06:58 -0600 Subject: [PATCH] Update MultiSelect.stories.js Add style option to story book --- stories/molecules/MultiSelect.stories.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stories/molecules/MultiSelect.stories.js b/stories/molecules/MultiSelect.stories.js index 1e54396..a3f5813 100644 --- a/stories/molecules/MultiSelect.stories.js +++ b/stories/molecules/MultiSelect.stories.js @@ -106,10 +106,12 @@ export const Nested = Template.bind({}); Default.args = { options: optionsA, - placeholder: 'Select an option' + placeholder: 'Select an option', + style: { maxHeight: '250px', overflowY: 'auto', position: 'relative' }, }; Nested.args = { options: optionsB, - placeholder: 'Select an option' + placeholder: 'Select an option', + style: { maxHeight: '250px', overflowY: 'auto', position: 'relative' }, };