File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
invokeai/frontend/web/src/features/parameters/components Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -413,12 +413,6 @@ const optionNameSx: SystemStyleObject = {
413413 } ,
414414} ;
415415
416- const optionDescriptionSx : SystemStyleObject = {
417- '&[data-is-compact="true"]' : {
418- color : 'base.800' ,
419- } ,
420- } ;
421-
422416const PickerOptionComponent = typedMemo (
423417 < T extends AnyModelConfig > ( { option, ...rest } : { option : WithStarred < T > } & BoxProps ) => {
424418 const { $compactView } = usePickerContext < WithStarred < T > > ( ) ;
@@ -460,7 +454,7 @@ const PickerOptionComponent = typedMemo(
460454 ) }
461455 </ Flex >
462456 { option . description && ! compactView && (
463- < Text sx = { optionDescriptionSx } data-is-compact = { compactView } >
457+ < Text className = "extra-info" color = "base.200" >
464458 { option . description }
465459 </ Text >
466460 ) }
You can’t perform that action at this time.
0 commit comments