Bug:
When centering a quote block, the header text and icon get's centered too. Should be still left aligned.
Because of that the icon is also behind the text.
Example:
Fix:
Forcing text-align: left for bbc_quote->header
Code: [Select]
PR: https://github.com/Wedge/wedge/pull/47
When centering a quote block, the header text and icon get's centered too. Should be still left aligned.
Because of that the icon is also behind the text.
Example:
fooQuote from bar
lorem ipsum
Fix:
Forcing text-align: left for bbc_quote->header
.bbc_quote>header {
padding: 2px 2px 2px 24px;
text-align: left;
}
PR: https://github.com/Wedge/wedge/pull/47