# Hoe verwijder ik de hand-wave emoji uit de login UI?

**URL:** https://meta.discourse.org/t/how-do-i-remove-the-hand-wave-emoji-from-the-login-ui/194589
**Category:** UX
**Created:** [21 juni 2021 om 18:45 UTC](https://meta.discourse.org/t/how-do-i-remove-the-hand-wave-emoji-from-the-login-ui/194589 "2021-06-21T18:45:32Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [14 september 2021 om 18:28 UTC](https://meta.discourse.org/t/how-do-i-remove-the-hand-wave-emoji-from-the-login-ui/194589/7 "2021-09-14T18:28:41Z")

</div>

> [@GadgetGizmo](#):
>
> I see the `.waving-hand` class is in the login.sccs file, though the fakebook theme does not appear to modify or include this file.

That’s correct, themes generally add CSS on top of Discourse’s core CSS, so they only override our defaults where needed. The easiest way to customize an existing theme would be to create a new theme component via the admin UI, add the CSS below to `common`, and then add your new theme component to the Fakebook theme.

```css
.waving-hand {
  display: none;
}

```

---

_[View the full topic](https://meta.discourse.org/t/how-do-i-remove-the-hand-wave-emoji-from-the-login-ui/194589)._
