All files / components/card/card-header card-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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36                                                                       
import styled from 'styled-components'
 
const CardHeaderStyled = styled.div`
border-bottom: solid 1px #e5edf4;
background:#ffffff;
 
&.has-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
 
> .card-header-wrapper {
  width:100%;
  display:flex;
  align-items: center;
  justify-content: flex-start;
 
  > .card-header-title {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #2870b2;
    padding: 20px 0px 20px 20px;
    overflow: hidden;
  }
 
  > .card-header-custom {
    width: 100%;
    margin-right: 20px;
  }
}
`
 
export default CardHeaderStyled