| 12345678910111213141516171819202122232425 |
- #emojiPicker {
- position: relative;
- > button {
- color: var(--text-secondary);
- &:hover, &:focus, &:active {
- background-color: transparent;
- color: var(--brand-orange);
- }
- }
- > aside {
- position: absolute;
- z-index: 10;
- top: 30px;
- --epr-width: 300px;
- --epr-height: 300px;
- --epr-header-padding: 10px;
- --epr-horizontal-padding: 10px;
- --epr-category-navigation-button-size: 24px;
- --epr-emoji-size: 22px;
- --epr-emoji-gap: 5px;
- }
- }
|