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?