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
|