Commit 248070c8 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'ph/emojiHoverStyle' into 'master'

Added hover style to emoji picker emojis

See merge request gitlab-org/gitlab!59401
parents 5e1e833f ec378ede
...@@ -26,6 +26,13 @@ gl-emoji { ...@@ -26,6 +26,13 @@ gl-emoji {
height: 30px; height: 30px;
// Create a width that fits 9 emojis per row // Create a width that fits 9 emojis per row
width: 100 / 9 * 1%; width: 100 / 9 * 1%;
transition: transform 0.15s cubic-bezier(0.3, 0, 0.2, 2) !important;
will-change: transform;
&:hover,
&:focus {
transform: scale(1.3);
}
} }
.emoji-picker .gl-new-dropdown .dropdown-menu { .emoji-picker .gl-new-dropdown .dropdown-menu {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment