2019-07-04 15:39:20 +02:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
const Wrapper = styled.div`
|
|
|
|
margin-bottom: 35px;
|
|
|
|
background: #ffffff;
|
|
|
|
padding: 22px 28px 18px;
|
2019-10-08 11:51:10 +02:00
|
|
|
padding-bottom: 13px;
|
2019-07-04 15:39:20 +02:00
|
|
|
border-radius: 2px;
|
|
|
|
box-shadow: 0 2px 4px #e3e9f3;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const Sub = styled.div`
|
|
|
|
padding-top: 0px;
|
|
|
|
line-height: 18px;
|
|
|
|
> p:first-child {
|
2019-07-11 18:13:09 +02:00
|
|
|
margin-bottom: 1px;
|
2019-07-04 15:39:20 +02:00
|
|
|
font-weight: 700;
|
|
|
|
color: #333740;
|
|
|
|
font-size: 1.8rem;
|
|
|
|
}
|
|
|
|
> p {
|
|
|
|
color: #787e8f;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
export { Wrapper, Sub };
|