File size: 643 Bytes
84c1942 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import styled from 'styled-components';
export const Container = styled.div`
position: relative;
color: ${props => props.theme.gray.darken(0.2)()};
vertical-align: middle;
font-size: 1rem;
`;
export const InputContainer = styled.div`
input {
border-radius: 2px;
outline: none;
border: 0px solid transparent;
padding: 0.2rem 0.5rem;
width: 100%;
height: 26px;
font-size: 13px;
color: ${props =>
props.theme['input.foreground'] || 'rgba(255, 255, 255, 0.8)'};
box-sizing: border-box;
background-color: ${props =>
props.theme['input.background'] || props.theme.background4};
}
`;
|