Resize logo in new header?

The following css should do the trick.
To be tested with different size (1.3 to be changed if necessary)
Code to be inserted in the header custom code, page or app level.

If the logo is inside the sidebar:

<style>
#sidebar-root img {
    transform: scale(1.3);
}
</style>

If the logo is inside the topbar:

<style>
#topbar-root img {
    transform: scale(1.3);
}
</style>
2 Likes