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
263 B

1 year ago
  1. /* eslint-disable */
  2. var style = require('../wxs/style.wxs');
  3. function barStyle(data) {
  4. return style({
  5. 'z-index': data.zIndex,
  6. 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
  7. });
  8. }
  9. module.exports = {
  10. barStyle: barStyle,
  11. };