/* Zoom on emojis on hover (in post content only */
.app-body .status__content:not(.status__content--collapsed) { /* So the emoji doesn't clip out when zoomed on. */
    overflow: visible;
}
.app-body .status__content .emojione {
    transition: transform .8s .8s;
}
.app-body .status__content .emojione:hover {
    transform: scale(2.5);
}

