2019-11-06 16:29:19 +01:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
2019-11-08 16:29:51 +01:00
|
|
|
const Label = styled.div`
|
2019-11-19 18:26:01 +01:00
|
|
|
padding: 18px 20px 17px 20px;
|
2019-11-08 16:29:51 +01:00
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 600;
|
2019-11-19 18:26:01 +01:00
|
|
|
position: relative;
|
|
|
|
|
min-height: 73px;
|
|
|
|
|
&:after {
|
|
|
|
|
content: '• ';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 15px;
|
|
|
|
|
left: 18.5px;
|
|
|
|
|
color: #aed4fb;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
|
|
|
|
&:before {
|
|
|
|
|
content: '&';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 26px;
|
|
|
|
|
left: 22px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 2px;
|
|
|
|
|
background-color: #e6f0fb;
|
|
|
|
|
color: transparent;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
padding-left: 18px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
p:last-of-type:not(:first-of-type) {
|
|
|
|
|
color: #9ea7b8;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
2019-11-08 16:29:51 +01:00
|
|
|
`;
|
2019-11-06 16:29:19 +01:00
|
|
|
|
|
|
|
|
export default Label;
|