Skip to content

Commit 94717c9

Browse files
committed
fix: notification select styling
1 parent c5a6b84 commit 94717c9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/notifications/notifications.util.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,25 @@ import { ReactComponent as RedWarning } from '../../assets/icons/ic-error-medium
2424
import { ReactComponent as CI } from '../../assets/icons/ic-CI.svg'
2525
import { ReactComponent as CD } from '../../assets/icons/ic-CD.svg'
2626
import { ReactComponent as Rocket } from '../../assets/icons/ic-paper-rocket.svg'
27+
import { commonSelectStyles } from '@devtron-labs/devtron-fe-common-lib'
2728

2829
export 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`,

0 commit comments

Comments
 (0)