FIX: Don't use transform for the emoji popup, it blurs it

This commit is contained in:
Robin Ward 2015-11-03 14:22:24 -05:00
parent bb21902954
commit d7d88f816c
1 changed files with 4 additions and 1 deletions

View File

@ -9,11 +9,14 @@ body img.emoji {
} }
.emoji-modal { .emoji-modal {
@include transform(translate(-50%, -50%));
z-index: 10000; z-index: 10000;
position: fixed; position: fixed;
left: 50%; left: 50%;
top: 50%; top: 50%;
width: 445px;
height: 264px;
margin-top: -132px;
margin-left: -222px;
background-color: dark-light-choose(#dadada, blend-primary-secondary(5%)); background-color: dark-light-choose(#dadada, blend-primary-secondary(5%));
} }