Skip to content

Commit

Permalink
fix(editable-table): 修复 editable-table 中添加按钮的高度问题
Browse files Browse the repository at this point in the history
  • Loading branch information
CherryJie committed May 15, 2018
1 parent 34e7cf4 commit 6e71aaa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/dao-editable-table/dao-editable-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
}
}
.det-add {
display: inline-block;
// 防止高度出现大于 16px 的情况
display: inline-flex;
color: $blue;
cursor: pointer;
}
Expand All @@ -49,6 +50,9 @@
}
.det-add-span {
vertical-align: middle;
line-height: 16px;
// 按照设计稿 link 的样式进行修改
margin-left: 6px;
}
svg.det-remove-btn {
fill: $grey-light;
Expand Down

0 comments on commit 6e71aaa

Please sign in to comment.