There were some posts asking whether it is possible to remove the AnkiHub Bot Icon (like this one by @ndmordan or this one by @wzblacktone) for a more minimalistic card design. While it is not supported yet, here is a quick 2 min fix for anyone still searching: Go to your note type styling (official docs here) and insert the following:
#ankihub-ai-button {
display: none;
}
You’ll have to do this for every note type. Alternatively, you could probably install a CSS injection add-on, there are several, but I haven’t tested that.
If it doesn’t work try adding an !important to the end of the line:
display: none !important;