emoji-picker.scss 457 B

12345678910111213141516171819202122232425
  1. #emojiPicker {
  2. position: relative;
  3. > button {
  4. color: var(--text-secondary);
  5. &:hover, &:focus, &:active {
  6. background-color: transparent;
  7. color: var(--brand-orange);
  8. }
  9. }
  10. > aside {
  11. position: absolute;
  12. z-index: 10;
  13. top: 30px;
  14. --epr-width: 300px;
  15. --epr-height: 300px;
  16. --epr-header-padding: 10px;
  17. --epr-horizontal-padding: 10px;
  18. --epr-category-navigation-button-size: 24px;
  19. --epr-emoji-size: 22px;
  20. --epr-emoji-gap: 5px;
  21. }
  22. }