File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,16 @@ import './Option.scss';
17
17
const Option = forwardRef ( ( { indeterminate, ...props } , ref ) => (
18
18
< components . Option { ...props } >
19
19
< div className = "Option" >
20
- < CheckboxButton
21
- checked = { props . isSelected }
22
- className = "Checkbox"
23
- id = { props . label }
24
- indeterminate = { indeterminate }
25
- ref = { ref }
26
- onChange = { ( ) => null }
27
- />
20
+ < div className = "CheckboxContainer" >
21
+ < CheckboxButton
22
+ checked = { props . isSelected }
23
+ className = "Checkbox"
24
+ id = { props . label }
25
+ indeterminate = { indeterminate }
26
+ ref = { ref }
27
+ onChange = { ( ) => null }
28
+ />
29
+ </ div >
28
30
< div className = "TitleDescriptionContainer" >
29
31
< label
30
32
className = { classNames ( {
Original file line number Diff line number Diff line change 1
1
.Option {
2
2
display : flex ;
3
- align-items : center ;
4
-
3
+
5
4
.Checkbox {
5
+ margin-top : var (--synth-spacing-1 );
6
6
margin-right : var (--synth-spacing-3 );
7
7
}
8
8
You can’t perform that action at this time.
0 commit comments