Skip to content

Commit

Permalink
update select colors
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelaZQ1 committed Feb 7, 2024
1 parent baaed44 commit 73fcc9d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/frontend/components/Form/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,13 @@ export const PlanSelect: React.FC<PlanSelectProps> = ({
);

const styles = {
control: (baseStyles: any, state: { isFocused: any }) => ({
control: (baseStyles: any) => ({
...baseStyles,
borderColor: state.isFocused ? "neutral.200" : "neutral.100",
borderColor: "#e7ebf1",
}),
dropdownIndicator: (baseStyles: any, state: { isFocused: any }) => ({
...baseStyles,
color: state.isFocused ? "#7586a0" : "#b4bbc8",
}),
};

Expand Down

0 comments on commit 73fcc9d

Please sign in to comment.