14 lines
263 B
XML
14 lines
263 B
XML
/* eslint-disable */
|
|
var style = require('../wxs/style.wxs');
|
|
|
|
function barStyle(data) {
|
|
return style({
|
|
'z-index': data.zIndex,
|
|
'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
barStyle: barStyle,
|
|
};
|