I discovered that when QBtnDropdown has a split, the padding is broken:
https://codepen.io/ajcastro/pen/dyPBRdR?editors=1010
My current fix/workaround is add class .fix-split then add the padding size:
.fix-split .q-btn.q-btn-dropdown__arrow-container{
padding-right: 8px;
}
.fix-split .q-btn:not(.q-btn-dropdown__arrow-container){
padding-left: 8px;
}
You need to pad the buttons in CSS, something like this (add that class on the split QBtnDropdown):
It would look horible otherwise anyway.
.q-btn-dropdown--split--padded
> .q-btn:first-child
padding-left: 18px
padding-right: 15px
> .q-btn:last-child
padding-left: 7px
padding-right: 7px
Most helpful comment
You need to pad the buttons in CSS, something like this (add that class on the split QBtnDropdown):
It would look horible otherwise anyway.