🎬 update steps demo style

This commit is contained in:
afc163 2019-08-24 17:56:22 +08:00
parent 735b78d164
commit 271c7aa73a
No known key found for this signature in database
GPG Key ID: 5F00908D72002306
2 changed files with 4 additions and 4 deletions

View File

@ -728,7 +728,7 @@ exports[`renders ./components/steps/demo/nav.md correctly 1`] = `
<div>
<div
class="ant-steps ant-steps-horizontal ant-steps-small ant-steps-label-horizontal ant-steps-navigation"
style="margin-bottom:60px;border-bottom:1px solid rgb(235, 237, 240)"
style="margin-bottom:60px;box-shadow:0px -1px 0 0 #e8e8e8 inset"
>
<div
class="ant-steps-item ant-steps-item-finish ant-steps-item-active"
@ -877,7 +877,7 @@ exports[`renders ./components/steps/demo/nav.md correctly 1`] = `
</div>
<div
class="ant-steps ant-steps-horizontal ant-steps-label-horizontal ant-steps-navigation"
style="margin-bottom:60px;border-bottom:1px solid rgb(235, 237, 240)"
style="margin-bottom:60px;box-shadow:0px -1px 0 0 #e8e8e8 inset"
>
<div
class="ant-steps-item ant-steps-item-finish ant-steps-item-active"
@ -1024,7 +1024,7 @@ exports[`renders ./components/steps/demo/nav.md correctly 1`] = `
</div>
<div
class="ant-steps ant-steps-horizontal ant-steps-small ant-steps-label-horizontal ant-steps-navigation"
style="margin-bottom:60px;border-bottom:1px solid rgb(235, 237, 240)"
style="margin-bottom:60px;box-shadow:0px -1px 0 0 #e8e8e8 inset"
>
<div
class="ant-steps-item ant-steps-item-finish ant-steps-item-active"

View File

@ -20,7 +20,7 @@ const { Step } = Steps;
const stepStyle = {
marginBottom: 60,
borderBottom: '1px solid rgb(235, 237, 240)',
boxShadow: '0px -1px 0 0 #e8e8e8 inset',
};
class Demo extends React.Component {