File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed 
src/components/notifications Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -24,21 +24,25 @@ import { ReactComponent as RedWarning } from '../../assets/icons/ic-error-medium
2424import  {  ReactComponent  as  CI  }  from  '../../assets/icons/ic-CI.svg' 
2525import  {  ReactComponent  as  CD  }  from  '../../assets/icons/ic-CD.svg' 
2626import  {  ReactComponent  as  Rocket  }  from  '../../assets/icons/ic-paper-rocket.svg' 
27+ import  {  commonSelectStyles  }  from  '@devtron-labs/devtron-fe-common-lib' 
2728
2829export  const  multiSelectStyles  =  { 
30+     ...commonSelectStyles , 
2931    control : ( base ,  state )  =>  ( { 
3032        ...base , 
3133        border : state . isFocused  ? '1px solid var(--B500)'  : '1px solid var(--N200)' , 
3234        boxShadow : 'none' , 
3335        height : '100%' , 
36+         backgroundColor : 'var(--bg-secondary)' , 
3437    } ) , 
3538    menu : ( base ,  state )  =>  ( { 
3639        ...base , 
3740        top : `38px` , 
41+         backgroundColor : 'var(--bg-menu)' , 
3842    } ) , 
3943    option : ( base ,  state )  =>  { 
4044        return  { 
41-             ...base , 
45+             ...commonSelectStyles . option ( base ,   state ) , 
4246            color : 'var(--N900)' , 
4347            display : `flex` , 
4448            alignItems : `center` , 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments