2019-09-10 16:34:43 +02:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
margin-top: 9px;
|
|
|
|
padding: 0;
|
2019-10-08 10:53:01 +02:00
|
|
|
padding-bottom: 7px;
|
2019-09-10 16:34:43 +02:00
|
|
|
|
|
|
|
> div:first-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0 !important;
|
|
|
|
list-style: none;
|
2019-10-08 10:53:01 +02:00
|
|
|
margin-bottom: 0;
|
2019-09-10 16:34:43 +02:00
|
|
|
> li:nth-child(2) {
|
|
|
|
height: 57px;
|
|
|
|
> div {
|
|
|
|
line-height: 54px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
> li {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> li:last-child {
|
|
|
|
> div {
|
|
|
|
border-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
box-shadow: 0 2px 4px #e3e9f3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default Wrapper;
|