Fix bug opportunity new button company search

This commit is contained in:
Charles Bochet
2023-09-13 21:41:48 -07:00
parent ea7eeb2872
commit 8a27fd6ca5
2 changed files with 6 additions and 7 deletions

View File

@ -1,7 +1,5 @@
import styled from '@emotion/styled';
import { overlayBackground } from '@/ui/theme/constants/effects';
const StyledEditableFieldEditModeContainer = styled.div<OwnProps>`
align-items: center;
@ -15,15 +13,16 @@ const StyledEditableFieldEditModeContainer = styled.div<OwnProps>`
const StyledEditableFieldInput = styled.div`
align-items: center;
background: ${({ theme }) => theme.background.transparent.secondary};
border: 1px solid ${({ theme }) => theme.border.color.medium};
border-radius: ${({ theme }) => theme.border.radius.sm};
box-shadow: ${({ theme }) => theme.boxShadow.strong};
display: flex;
margin-left: -1px;
min-height: 32px;
width: inherit;
${overlayBackground}
z-index: 10;
`;