amis
amis copied to clipboard
DropDownButton如何设置下拉菜单宽度
DropDownButton下拉菜单宽度比按钮宽很多看起来太丑了.尝试自定义样式也依旧无法改变宽度,此是有bug还是可以通过别的配置改变其宽度呢?
任何附加信息:
👍 Thanks for this! 🏷 I have applied any labels matching special text in your issue.
Please review the labels and make any necessary changes.
+1
+1
因为有个minWidth,可以写style去掉,或者给个合适的值,如下:
{
"type": "dropdown-button",
"label": "下拉菜单",
"style": {
"--DropDown-menu-minWidth": "none"
},
"buttons": [
{
"type": "button",
"label": "按钮1",
"disabled": true
},
{
"type": "button",
"label": "按钮2"
},
{
"type": "button",
"label": "按钮3"
}
]
}