You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
250 B

1 year ago
  1. /* eslint-disable */
  2. var style = require('../wxs/style.wxs');
  3. var addUnit = require('../wxs/add-unit.wxs');
  4. function rootStyle(data) {
  5. return style({
  6. 'padding-left': addUnit(data.gutter),
  7. });
  8. }
  9. module.exports = {
  10. rootStyle: rootStyle,
  11. };