All files / components/layout/header 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                               
import styled from 'styled-components'
 
const HeaderStyled = styled.div`
  position: absolute;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(197, 208, 225, 0.4);
  box-sizing: border-box;
`
 
export default HeaderStyled