Skip to content

Commit

Permalink
fix #20 first point
Browse files Browse the repository at this point in the history
  • Loading branch information
tigranmk committed Jul 18, 2022
1 parent 165bf7c commit f106913
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ const InputProposalStyled = styled(InputGrayStyled)<{ pallete: string }>`
font-family: 'SFProDisplay', sans-serif;
font-size: 14px;
line-height: 17px;
font-weight: normal;
font-weight: 400;
font-style: normal;
color: ${({ pallete }) => `var(--color-${pallete})`};
height: 45px;
background-color: ${({ valid }) => (valid ? 'rgba(255, 255, 255, .05)' : 'rgb(255, 116, 107, .15)')};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const SearchResultLeft: React.FC<SearchResultLeftProps> = (props) => {
fontFamily: 'SFProDisplay',
fontWeight: 700,
lineHeight: '19px',
fontStyle: 'normal',
}}>
{value}
<Text sx={{color: 'rgba(255,255,255,0.5)'}}>.beam</Text>
Expand Down

0 comments on commit f106913

Please sign in to comment.