Bricks Version: 1.4RC
Hi,
When displaying a button with multi-line label, display is broken because button style uses line-height as button height value.
Line-height should not be used for this, but for actual label line-height.
Height should be set with padding, proportionnal to font-size to automatically adjust to all button sizes.
In the meantime, this CSS example fixes the issue:
.brxe-button {
line-height: inherit !important;
padding: 0.4em 1.5em !important;
}