Closed jalibu closed 3 years ago
Hi, a user opened an issue for one of my modules and complained about some unpretty list alignments. After some debugging, we found out that the reason was in this module's MMM-cryptocurrency.css.
MMM-cryptocurrency.css
The following css selector matches to all spans.
.mmm-cryptocurrency-icon > tr > td > img, span{ vertical-align: middle; }
probably that's what you want:
.mmm-cryptocurrency-icon > tr > td { img, span { vertical-align: middle; } }
Updated! Thanks for the debug!
Hi, a user opened an issue for one of my modules and complained about some unpretty list alignments. After some debugging, we found out that the reason was in this module's
MMM-cryptocurrency.css
.The following css selector matches to all spans.