Feat/company card fields (#686)

* wip

* Ok

* asd

* Fixed cancel submit

* Renamed

* Fixed
This commit is contained in:
Lucas Bordeau
2023-07-16 04:17:31 +02:00
committed by GitHub
parent 7959308e0b
commit be21392737
35 changed files with 1041 additions and 95 deletions

View File

@ -9,11 +9,15 @@ export const overlayBackground = (props: { theme: ThemeType }) =>
box-shadow: ${props.theme.boxShadow.strong};
`;
export const textInputStyle = (props: any) =>
export const textInputStyle = (props: { theme: ThemeType }) =>
css`
background-color: transparent;
border: none;
color: ${props.theme.font.color.primary};
font-family: ${props.theme.font.family};
font-size: ${props.theme.font.size.md};
font-weight: ${props.theme.font.weight.regular};
outline: none;
padding: ${props.theme.spacing(0)} ${props.theme.spacing(2)};