We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43b72ee commit 4cbbce1Copy full SHA for 4cbbce1
1 file changed
packages/comment-widget/src/emoji-button.ts
@@ -129,13 +129,26 @@ export class EmojiButton extends LitElement {
129
box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.1);
130
border-radius: 0.875em;
131
overflow: hidden;
132
+ animation: fadeInUp 0.3s both;
133
}
134
135
@media (max-width: 640px) {
136
.form__emoji-panel {
137
right: -7.8em;
138
139
140
+
141
+ @keyframes fadeInUp {
142
+ from {
143
+ opacity: 0;
144
+ transform: translate3d(0, 5%, 0);
145
+ }
146
147
+ to {
148
+ opacity: 1;
149
+ transform: translate3d(0, 0, 0);
150
151
152
`,
153
];
154
0 commit comments