/* ABN Branding — logo sizing across the different places Frappe renders it */

.navbar-brand img,
.app-logo,
#page-login .app-logo,
.splash img,
#splash-container img,
.web-footer img.footer-logo {
	object-fit: contain;
	max-height: 32px;
	width: auto;
}

#page-login .app-logo,
#splash-container img {
	max-height: 64px;
}

/* Hide the default Frappe "Powered by Frappe" footer badge if the theme
   renders it as a background-image / icon-font element rather than <img>,
   since our JS text-scanner can only rewrite text nodes and <img src>. */
.web-footer .powered-by-frappe {
	visibility: hidden;
}
