Ho do I add a logo on my App

I wonder if it is possible to add a logo or header in the app?

Try putting this code in a Richtext component in every screen you want your logo to appear in the header.



[data-test="nav-bar"] >div +* {
  color: transparent !important; 
}

.nav-bar-root {
  content: "";
  display: flex;
  background-image: url(your logo URL here);
  background-size: 45px 40px;
  background-repeat: no-repeat; 
  background-position: center, center;
}
2 Likes