Skip to content

Commit

Permalink
Update MultiSelect.stories.js
Browse files Browse the repository at this point in the history
Add style option to story book
  • Loading branch information
belinda82 authored Jul 6, 2023
1 parent d9d784c commit e61a04a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions stories/molecules/MultiSelect.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
};

0 comments on commit e61a04a

Please sign in to comment.