"> "> ">
<pre><span><style>
  button[aria-label="Profile"] svg {
    display: none;
  }
  button[aria-label="Profile"] div div[size] {
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(AVATAR);
  }
</style>

<aside> 💡 Replace aria-label with the Tab's name, and AVATAR to the profile picture.

</aside>

Please note that you will have to put this on every single details tab on your bottom bar to make it consistent.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/c221e42d-6d9e-433d-9b6c-6459859e5c36/Untitled.png

Simple Notification Badge

<pre><span><style>
 button[aria-label="Profile"]::before {
content: "";
position: absolute;
top: 13px;
right: 20px;
z-index: 1;
  height: 11px;
  width: 11px;
  background-color: red;
  border-radius: 50%;
  border: 2px solid #040506;
}

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d3744ff6-9533-40fd-87f5-2faf36558953/Untitled.png

Counting # Notifications Badge

<pre><span><style>
 button[aria-label="Profile"]::before {
content: "3";
position: absolute;
font-size: 11px;
font-weight: 800;
color: white;
 padding: 3px;
  top: 6px;
  right: 13px;
z-index: 1;
  height: 20px;
  width: 20px;
  background-color: red;
  border-radius: 50%;
}

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/05c5b8c9-58cd-49fc-8c40-8fc011c28af8/Untitled.png