邃芒智像相册
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
403 B

  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. 'z-index': data.zIndex,
  7. top: addUnit(data.top),
  8. });
  9. }
  10. function notifyStyle(data) {
  11. return style({
  12. background: data.background,
  13. color: data.color,
  14. });
  15. }
  16. module.exports = {
  17. rootStyle: rootStyle,
  18. notifyStyle: notifyStyle,
  19. };