Skip to content

Commit 7d3e8bb

Browse files
committed
fix: border color for select
1 parent 78f5cba commit 7d3e8bb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Shared/Components/ReactSelect/utils.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ export const getCommonSelectStyle = (styleOverrides = {}): StylesConfig => ({
126126
menu: (base) => ({
127127
...base,
128128
backgroundColor: 'var(--bg-menu-primary)',
129+
border: '1px solid var(--border-primary-translucent)',
129130
}),
130131
multiValue: (base) => ({
131132
...base,

src/Shared/Components/SelectPicker/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const getCommonSelectStyle = <OptionValue, IsMulti extends boolean>({
109109
overflow: 'hidden',
110110
marginBlock: '4px',
111111
backgroundColor: 'var(--bg-menu-primary)',
112-
border: '1px solid var(--N200)',
112+
border: '1px solid var(--border-primary-translucent)',
113113
boxShadow: '0px 2px 4px 0px rgba(0, 0, 0, 0.20)',
114114
width: getMenuWidthFromSize(menuSize).width,
115115
minWidth: getMenuWidthFromSize(menuSize).minWidth,

0 commit comments

Comments
 (0)