jzfai / vue3-admin-plus

👏 An amazing admin framework of vue3
MIT License
849 stars 203 forks source link

Button group has margin left #74

Closed munkeywolf00 closed 1 year ago

munkeywolf00 commented 1 year ago

If multiple button inside button-group, non first child has margin left. This is in base and china-red theme. Not sure in other theme.

My initial fix: .el-button-group > .el-button + .el-button { margin-left: 0; }

button-group

jzfai commented 1 year ago

thanks for you advise, i find the issue in

//src/theme/base/element-plus/button.scss

.el-button + .el-button { margin-left: 12px; }

you can notes it and fix the issue

i will fix it in next version