Commit 0e8bc859 authored by Jeff Wen's avatar Jeff Wen Committed by hetech

Steps: fix style with simple theme (#14610)

parent 535b6149
...@@ -161,7 +161,7 @@ export default { ...@@ -161,7 +161,7 @@ export default {
style.transitionDelay = (-150 * this.index) + 'ms'; style.transitionDelay = (-150 * this.index) + 'ms';
} }
style.borderWidth = step ? '1px' : 0; style.borderWidth = step && !this.isSimple ? '1px' : 0;
this.$parent.direction === 'vertical' this.$parent.direction === 'vertical'
? style.height = step + '%' ? style.height = step + '%'
: style.width = step + '%'; : style.width = step + '%';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment