Skip to content

Commit

Permalink
fix(space): rename --row-gap to --td-space-row-gap (#3612)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaishi authored Nov 16, 2023
1 parent 4a72b71 commit 0389b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/space/space.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default defineComponent({
if (needPolyfill.value) {
const [columnGap, rowGap] = renderGap.split(' ');
style['--td-space-column-gap'] = columnGap;
style['--row-gap'] = rowGap || columnGap;
style['--td-space-row-gap'] = rowGap || columnGap;
} else {
style.gap = renderGap;
}
Expand Down

0 comments on commit 0389b87

Please sign in to comment.