File tree Expand file tree Collapse file tree 2 files changed +22
-28
lines changed
frontend-app/src/components/ui/MultiSelector Expand file tree Collapse file tree 2 files changed +22
-28
lines changed Original file line number Diff line number Diff line change @@ -73,27 +73,25 @@ export default function MultiSelector({
7373 `iss__manualSelector__options${ isOpen ? " options--open" : "" } `
7474 }
7575 >
76- < div >
77- < label onClick = { resetSelector } className = "iss__manualSelector__level" >
78- clear { selectorLabel }
79- </ label >
80- < select multiple ref = { selector } className = "iss__manualSelector__selector" >
81- {
82- selectorOptions . map ( ( { name, id } ) =>
83- < option
84- key = { id }
85- value = { id }
86- className = "iss__manualSelector__option"
87- > { name } </ option >
88- )
89- }
90- </ select >
91- < button
92- onClick = { ( ) => handleManualSelect ( ) }
93- type = "button"
94- className = "iss__manualSelector__submit"
95- > select</ button >
96- </ div >
76+ < label onClick = { resetSelector } className = "iss__manualSelector__level" >
77+ clear { selectorLabel }
78+ </ label >
79+ < select multiple ref = { selector } className = "iss__manualSelector__selector" >
80+ {
81+ selectorOptions . map ( ( { name, id } ) =>
82+ < option
83+ key = { id }
84+ value = { id }
85+ className = "iss__manualSelector__option"
86+ > { name } </ option >
87+ )
88+ }
89+ </ select >
90+ < button
91+ onClick = { ( ) => handleManualSelect ( ) }
92+ type = "button"
93+ className = "iss__manualSelector__submit"
94+ > select</ button >
9795 </ div >
9896 </ div >
9997 ) ;
Original file line number Diff line number Diff line change 4848}
4949
5050.options--open {
51+ padding : 4px 8px ;
5152 outline-color : var (--issBrand );
5253 max-height : 500px ;
5354}
5455
55- .iss__manualSelector__options > div ,
56- .iss__manualSelector__options > form {
57- padding : 4px 8px ;
58- display : flex;
59- flex-direction : column;
60- }
61-
6256.iss__manualSelector__level {
6357 font-size : 14px ;
6458 cursor : pointer;
6559 color : black;
6660 padding : 4px 0 ;
6761 border-bottom : 1px solid var (--issBrand );
6862 margin-bottom : 8px ;
63+ display : block;
64+ width : 100% ;
6965}
7066
7167.iss__manualSelector__selector {
You can’t perform that action at this time.
0 commit comments