mirror of
https://github.com/strapi/strapi.git
synced 2025-10-12 08:36:40 +00:00
27 lines
476 B
JavaScript
27 lines
476 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.div`
|
||
|
margin-bottom: 35px;
|
||
|
background: #ffffff;
|
||
|
padding: 22px 28px 18px;
|
||
|
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 {
|
||
|
font-weight: 700;
|
||
|
color: #333740;
|
||
|
font-size: 1.8rem;
|
||
|
}
|
||
|
> p {
|
||
|
color: #787e8f;
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export { Wrapper, Sub };
|