diff --git a/src/app/components/text-input-field.tsx b/src/app/components/text-input-field.tsx index eba636b5c3..4dd89062bd 100644 --- a/src/app/components/text-input-field.tsx +++ b/src/app/components/text-input-field.tsx @@ -2,7 +2,6 @@ import { Ref, useRef } from 'react'; import { SendCryptoAssetSelectors } from '@tests/selectors/send.selectors'; import { useField } from 'formik'; -import { css } from 'leather-styles/css'; import { Box, Flex, FlexProps, HStack, styled } from 'leather-styles/jsx'; import { useShowFieldError } from '@app/common/form-utils'; @@ -58,11 +57,6 @@ export function TextInputField({ }} border="default" borderRadius="sm" - className={css({ - '& :has(:focus)::before': { - border: '1px solid green', - }, - })} cursor="text" flexDirection="column" justifyContent="center"