matteodanelli / MMM-cryptocurrency

A MagicMirror module for crypto currencies value.
MIT License
96 stars 42 forks source link

Module is causing css issues with MM core and other modules #92

Closed jalibu closed 3 years ago

jalibu commented 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.

The following css selector matches to all spans.

.mmm-cryptocurrency-icon > tr > td > img, span{
    vertical-align: middle;
}
jalibu commented 3 years ago

probably that's what you want:

.mmm-cryptocurrency-icon > tr > td {
  img, span {
     vertical-align: middle;
  }
}
matteodanelli commented 3 years ago

Updated! Thanks for the debug!