Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

28 lines
524 B
SCSS

.EmojiButton {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
margin: 0.125rem;
border-radius: var(--border-radius-messages-small);
cursor: pointer;
font-size: 1.75rem;
line-height: 2.5rem;
background-color: transparent;
transition: background-color .15s ease;
.mac-os-fix & {
line-height: inherit;
}
&:hover {
background-color: rgba(var(--color-text-secondary-rgb), 0.08);
}
& > img {
width: 2rem;
height: 2rem;
}
}