View.js 226 B

12345678910111213
  1. // @flow
  2. import variable from './../variables/platform';
  3. export default (variables /* : * */ = variable) => {
  4. const viewTheme = {
  5. '.padder': {
  6. padding: variables.contentPadding
  7. }
  8. };
  9. return viewTheme;
  10. };