Bug Report: Button alignment

Not a question, just an error in layout that should be addressed for button alignment in certain situations. In certain situations buttons are left-aligned(extremely) when they should be centered, such as this:

Devtools tells me the problem is in the CSS here:

.dcg-action-button-playground {
    text-align: left;
}

Change the CSS text-align: attribute property to center and everything will be fixed.

Or perhaps more semantically considering the way the rest of the layout goes, set the display attribute to block.

Or is this all intended?

Thanks Mike, I’ll forward this to the team

1 Like

Is there a way to make the action button align to the right margin?
When I put the button under a component on the Left side, I’d like the button to be under the component, on the right.