revite/src/components/ui/InputBox.tsx

40 lines
708 B
TypeScript
Raw Normal View History

2021-06-18 07:05:01 -04:00
import styled, { css } from "styled-components";
interface Props {
2021-07-05 06:23:23 -04:00
readonly contrast?: boolean;
2021-06-18 10:46:30 -04:00
}
2021-06-18 07:05:01 -04:00
2021-06-18 10:18:10 -04:00
export default styled.input<Props>`
2021-07-05 06:23:23 -04:00
z-index: 1;
padding: 8px 16px;
border-radius: 6px;
font-family: inherit;
color: var(--foreground);
background: var(--primary-background);
transition: 0.2s ease background-color;
border: none;
outline: 2px solid transparent;
transition: outline-color 0.2s ease-in-out;
&:hover {
background: var(--secondary-background);
}
&:focus {
outline: 2px solid var(--accent);
}
${(props) =>
props.contrast &&
css`
color: var(--secondary-foreground);
background: var(--secondary-background);
&:hover {
background: var(--hover);
}
`}
2021-06-18 07:05:01 -04:00
`;