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.

17 lines
307 B

var utils = require('../common/utils.wxs');
function getRowStyles(data) {
if (!data.gutter) {
return '';
}
return utils._style({
'margin-right': utils.addUnit(-data.gutter / 2),
'margin-left': utils.addUnit(-data.gutter / 2),
});
}
module.exports = {
getRowStyles: getRowStyles,
};