From ed3e794618bbf652bddeee43d0fe4ac19adb2920 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Thu, 26 Aug 2021 21:18:04 -0400 Subject: [PATCH] stash --- packages/devui/src/Select/Select.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/devui/src/Select/Select.tsx b/packages/devui/src/Select/Select.tsx index ff5b12b5..df47b88d 100644 --- a/packages/devui/src/Select/Select.tsx +++ b/packages/devui/src/Select/Select.tsx @@ -27,7 +27,7 @@ export class Select< {...this.props} theme={(theme) => ({ ...theme, - borderRadius: this.props.theme.inputBorderRadius, + borderRadius: 0, colors: { ...theme.colors, @@ -63,6 +63,11 @@ export class Select< backgroundColor: props.isDisabled ? props.theme.colors.neutral10 : props.theme.colors.neutral5, + borderColor: isDisabled + ? colors.neutral10 + : isFocused + ? colors.primary + : colors.neutral20, }), }} />