fix message emojis reaction alignment

This commit is contained in:
10G Meow 2023-04-09 14:07:02 +03:00
parent 19d3605e11
commit 3c5c6098d1
3 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,9 @@
@mixin emoji-reaction-transform($type: 'right') {
@if $type == 'right' {
transform: translateX(20px) translateX(100%);
}
@if $type == 'left' {
transform: translateX(-20px) translateX(-100%);
}
}