You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And then, setting the container's display to flex :
buildFrame: {value: functionbuildFrame(){this.element=document.createElement("div");this.element.style.display='flex'this.element.style.flexDirection='row'// or 'column' if verticalthis.element.style.justifyContent='space-between'this.parent.appendChild(this.element);}},
Then it looks like this :
I'd submit a pull request, but don't know the lib so well, and wanted to submit the idea first anyways ;)
The text was updated successfully, but these errors were encountered:
Hey !
I am working with nexusUI these days and still loving it after all these years (thanks @taylorbf ;) )
The
RadioButton
introduces some undesired horizontal padding when the width is not a multiple of the height.This is because the button's dimensions are configured like so :
I'd suggest taking the min of (width, height) instead :
And then, setting the container's display to flex :
Then it looks like this :
I'd submit a pull request, but don't know the lib so well, and wanted to submit the idea first anyways ;)
The text was updated successfully, but these errors were encountered: