fix: Col empty style

This commit is contained in:
陈嘉涵 2017-08-22 14:15:43 +08:00
parent 96a90097a5
commit 15569b0e51
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export default {
const padding = `${this.gutter / 2}px`;
return this.gutter
? { paddingLeft: padding, paddingRight: padding }
: null;
: {};
}
}
};

View File

@ -24,7 +24,7 @@ export default {
const margin = `-${Number(this.gutter) / 2}px`;
return this.gutter
? { marginLeft: margin, marginRight: margin }
: null;
: {};
}
}
};