Align emdedded button to the left

Add this code to the Custom CSS field on the Design tab of your Button widget’s settings:

[class*="ButtonBase__ButtonContainer"] {
  align-self: flex-start;
}

PERFECT thanks MAX

2 Likes

For those who want be able to align to the left or right, this should help:

  • align-self: flex-start; aligns the element at the start of the cross-axis (left in this context).
  • align-self: flex-end; aligns the element at the end of the cross-axis (right in this context).
2 Likes