Files
omnivore/packages/web/components/elements/FormElements.tsx
2022-02-11 09:24:33 -08:00

22 lines
440 B
TypeScript

import { styled } from '../tokens/stitches.config'
export const FormInput = styled('input', {
border: 'none',
width: '100%',
bg: 'transparent',
fontSize: '16px',
fontFamily: 'inter',
fontWeight: 'normal',
lineHeight: '1.35',
color: '$grayTextContrast',
'&:focus': {
outline: 'none',
},
})
export const BorderedFormInput = styled(FormInput, {
borderRadius: '6px',
border: `1px solid $grayBorder`,
p: '$3',
})