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.

18 lines
355 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. {
  7. 'border-color': data.borderColor,
  8. color: data.textColor,
  9. 'font-size': addUnit(data.fontSize),
  10. },
  11. data.customStyle,
  12. ]);
  13. }
  14. module.exports = {
  15. rootStyle: rootStyle,
  16. };