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)};
|
2017-01-11 16:13:58 +02:00
|
|
|
padding-bottom: ${remcalc(5)};
|
2017-02-02 21:05:45 +02:00
|
|
|
background-color: ${colors.inactive.default};
|
2017-01-10 00:14:10 +02:00
|
|
|
`;
|