All files / components/modal/modal-header modal-header.styled.js

0% Statements 0/8
0% Branches 0/4
0% Functions 0/2
0% Lines 0/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                                         
import style from 'styled-components'
 
const HeaderStyled = style.div`
padding: 0px 20px;
height: 60px;
display: flex;
align-items:center;
border-bottom: solid 1px #e5edf4;
 
h2
{
  font-family: ProximaNova;
  color: #3b495e;
  font-weight: normal;
  width: 100%;
  margin: 0;
}
`
 
export default HeaderStyled