28 lines
550 B
JavaScript
Raw Normal View History

2019-11-06 16:29:19 +01:00
import styled from 'styled-components';
const ComponentWrapper = styled.div`
position: relative;
2019-11-19 18:26:01 +01:00
> div {
position: relative;
box-shadow: 0 2px 4px #e3e9f3;
&:not(:first-of-type) {
margin-top: 37px;
&:before {
content: '&';
position: absolute;
top: -37px;
left: 22px;
height: 100%;
width: 2px;
background-color: #e6f0fb;
color: transparent;
}
}
2019-11-25 13:15:25 +01:00
> div:not(:first-of-type) {
padding-top: 6px;
}
2019-11-19 18:26:01 +01:00
}
2019-11-06 16:29:19 +01:00
`;
export default ComponentWrapper;