1
0
mirror of https://akkoma.dev/lamp/akkoma-fe.git synced 2025-05-02 20:44:04 -04:00

scale emoji on hover

This commit is contained in:
Henry Jameson 2019-09-08 17:01:28 +03:00
parent 83f45167b6
commit 4f88bb4ea1

@ -705,6 +705,14 @@ $status-margin: 0.75em;
&.emoji {
width: 32px;
height: 32px;
transition: transform 200ms;
transform: scale(1);
z-index: 1;
&:hover {
transform: scale(3);
z-index: 2;
}
}
}