18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
import { overlayBackground } from '@/ui/theme/constants/effects';
|
|
|
|
export const TextInputContainer = styled.div`
|
|
align-items: center;
|
|
border: 1px solid ${({ theme }) => theme.border.color.medium};
|
|
border-radius: ${({ theme }) => theme.border.radius.sm};
|
|
display: flex;
|
|
margin-left: -1px;
|
|
min-height: 32px;
|
|
width: inherit;
|
|
|
|
${overlayBackground}
|
|
|
|
z-index: 10;
|
|
`;
|