All files / src global.ts

0% Statements 0/9
0% Branches 0/1
0% Functions 0/1
0% Lines 0/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 27 28 29 30 31 32 33 34 35                                                                     
import styled from 'styled-components';
 
export const StyledInput = styled.input`
  width: 100%;
  //max-width: 369px;
  font-size: 1.6rem;
  height: 48px;
  margin: 0;
  padding: 0 14px;
  box-sizing: border-box;
  border: 1.5px solid #6f6f6f;
  border-radius: 0;
  &:focus {
    outline: 2.5px solid #c7d01c;
  }
`;
 
export const StyledSearchForm = styled.form`
  margin: 60px auto 0 auto;
`;
 
export const StyledResultInModalWrapper = styled.div`
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
`;
 
export const StyledErrorMessageWrapper = styled.div`
  height: 0px;
  font-size: 1.4rem;
  color: #d01c1c;
  font-weight: bold;
`;