1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-10 19:10:13 +02:00
copilot/ui/src/components/list/group-view.js

26 lines
509 B
JavaScript
Raw Normal View History

2017-01-10 00:14:10 +02:00
const constants = require('../../shared/constants');
const fns = require('../../shared/functions');
const View = require('./view').raw;
const Styled = require('styled-components');
const {
colors
} = constants;
const {
remcalc
} = fns;
const {
default: styled
} = Styled;
module.exports = styled(View)`
display: block;
padding-top: ${remcalc(62)};
padding-left: ${remcalc(23)};
padding-right: ${remcalc(23)};
padding-bottom: ${remcalc(15)};
background-color: ${colors.brandInactive};
`;