Skip to content

Commit fd9ab18

Browse files
committed
fix(layout): fix layout offset class name
1 parent 4bb75cc commit fd9ab18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/grid/box-item.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default {
3737
return classNames
3838
}, [])
3939
if (this.span) classNames.push(`is-${this.span}`)
40-
if (this.offset) classNames.push(`is-offset-${this.offset}`)
40+
if (this.offset) classNames.push(`has-offset-${this.offset}`)
4141
if (this.width || this.narrow !== void 0) classNames.push(`is-narrow`)
4242
return classNames
4343
},

0 commit comments

Comments
 (0)