From e2a52988241434c97c276221e071847d1e9e16a5 Mon Sep 17 00:00:00 2001 From: aliceoq Date: Fri, 9 Feb 2024 11:14:05 -0300 Subject: [PATCH] style: fix select height and remove outline --- src/components/select/styles.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/select/styles.ts b/src/components/select/styles.ts index 1df7b87d..9299b861 100644 --- a/src/components/select/styles.ts +++ b/src/components/select/styles.ts @@ -11,9 +11,10 @@ const selectContainer: SxStyleProp = { const select: SxStyleProp = { borderRadius: '4px', padding: '0px 4px', - height: '36px', + height: '24px', fontSize: '14px', border: '1px solid #E7E9EE', + outline: 'none', } export default { selectContainer, select }