plopfile-generate
Version:
Installation:
29 lines (24 loc) • 524 B
JavaScript
import styled from 'styled-components';
import { palette } from 'styled-theme';
const BoxWrapper = styled.div`
width: 100%;
height: 100%;
padding: 20px;
background-color: #ffffff;
border: 1px solid ${palette('border', 0)};
margin-bottom: 30px;
&:last-child {
margin-bottom: 0;
}
padding: 20px;
margin: 0 10px 30px;
}
&.half {
width: calc(50% - 34px);
width: 100%;
}
}
`;
export { BoxWrapper };