29 lines
525 B
SCSS
29 lines
525 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 0.15s ease;
|
|
|
|
.mac-os-fix & {
|
|
line-height: inherit;
|
|
}
|
|
|
|
&.focus,
|
|
&:hover {
|
|
background-color: var(--color-background-selected);
|
|
}
|
|
|
|
& > img {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|
|
}
|