9 lines
211 B
SCSS
9 lines
211 B
SCSS
|
|
@mixin emoji-reaction-transform($type: 'right') {
|
||
|
|
@if $type == 'right' {
|
||
|
|
transform: translateX(20px) translateX(100%);
|
||
|
|
}
|
||
|
|
|
||
|
|
@if $type == 'left' {
|
||
|
|
transform: translateX(-20px) translateX(-100%);
|
||
|
|
}
|
||
|
|
}
|