38 lines
650 B
JavaScript
Raw Normal View History

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-29 20:16:33 +01:00
padding: 9px 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;
2019-11-29 20:16:33 +01:00
min-height: 64px;
2019-11-19 18:26:01 +01:00
&:after {
content: '• ';
position: absolute;
2019-11-26 16:15:59 +01:00
top: 11px;
2019-11-19 18:26:01 +01:00
left: 18.5px;
color: #aed4fb;
font-size: 15px;
}
&:before {
content: '&';
position: absolute;
2019-11-26 16:15:59 +01:00
top: 22px;
2019-11-19 18:26:01 +01:00
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;