Skip to content

Commit

Permalink
Merge pull request #9186 from RocketChat/fix-emoji-size-on-last-message
Browse files Browse the repository at this point in the history
[FIX] Emoji size on last message preview
  • Loading branch information
rodrigok committed Dec 20, 2017
1 parent d62ea9d commit 00facda
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/rocketchat-emoji-emojione/client/sprites.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
}

.emojione.big {
width: 44px !important;
height: 44px !important;
width: 44px;
height: 44px;
}

.emojione-0023-20e3 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,18 @@
font-size: 12px;
line-height: normal;

& > p, & code, & pre {
& .emojione {
width: 13px !important;
min-width: 13px;
height: 13px !important;
min-height: 13px;
}

& > p,
& code,
& pre {
display: inline;

white-space: unset;
}

Expand Down

0 comments on commit 00facda

Please sign in to comment.