17 lines
261 B
SCSS
17 lines
261 B
SCSS
|
.emoji {
|
||
|
display: inline-block;
|
||
|
vertical-align: bottom;
|
||
|
transition: var(--transition);
|
||
|
cursor: zoom-in;
|
||
|
margin: 0;
|
||
|
box-shadow: none;
|
||
|
border-radius: 0;
|
||
|
background-color: transparent;
|
||
|
width: 1.5em;
|
||
|
height: 1.5em;
|
||
|
|
||
|
&:hover {
|
||
|
transform: scale(2);
|
||
|
}
|
||
|
}
|