45 lines
891 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;
2019-12-06 18:27:07 +01:00
border-radius: 2px;
2019-12-02 19:20:55 +01:00
.arrow-icons {
position: absolute;
top: -12px;
right: 49px;
z-index: 9;
.arrow-btn {
display: inline-flex;
svg {
2019-12-06 18:27:07 +01:00
margin-left: 5px;
margin-top: 5px;
2019-12-02 19:20:55 +01:00
}
}
}
2019-11-19 18:26:01 +01:00
&:not(:first-of-type) {
2019-11-26 16:15:59 +01:00
margin-top: 32px;
2019-11-19 18:26:01 +01:00
&:before {
content: '&';
position: absolute;
2019-11-29 20:16:33 +01:00
top: -30px;
2019-12-11 16:52:35 +01:00
left: 24.5px;
2019-11-19 18:26:01 +01:00
height: 100%;
width: 2px;
background-color: #e6f0fb;
color: transparent;
}
}
2019-12-02 19:20:55 +01:00
> div:last-of-type {
2019-11-25 13:15:25 +01:00
padding-top: 6px;
2019-11-26 16:15:59 +01:00
padding-bottom: 5px;
2019-11-29 20:16:33 +01:00
margin-bottom: 22px;
2019-12-12 12:27:10 +01:00
border-radius: 2px;
2019-11-25 13:15:25 +01:00
}
2019-11-19 18:26:01 +01:00
}
2019-11-06 16:29:19 +01:00
`;
export default ComponentWrapper;