/* Increase emoji size */
.status__content .emojione.custom-emoji, .account__header__bio .emojione.custom-emoji {
  width: 2.5em;
  height: 2.5em;
  margin-top: 0;
  margin-bottom: 0;
}

.detailed-status .status__content .emojione.custom-emoji {
  width: 2.25em;
  height: 2.25em;
  margin-top: 0;
  margin-bottom: 0;
}

/* Reset the size for CW */
.status__content--with-spoiler > p:first-child .emojione.custom-emoji {
  width: 20px;
  height: 20px;
  margin: -3px 0 0;
}

.detailed-status .status__content--with-spoiler > p:first-child .emojione.custom-emoji {
  width: 24px;
  height: 24px;
  margin: -1px 0 0;
}

/* Increase emoji size slightly on hover (copied from tech.lgbt */
/*.status__content:not(.status__content--collapsed) {
  overflow: visible;
}

.status__content .emojione, .account__header__bio .emojione {
  transition: transform .2s, filter .2s;
}

.status__content .emojione:hover, .account__header__bio .emojione:hover {
  transform: scale(2.2);
  filter: drop-shadow(0 0 3px #202020);
}*/

