/* Adds the copyright logo and "by" into the footer's company elements */
body .company-copyright:not(:empty)::before { content: "\A9"; }
body .company-name:not(:empty)::before { content: " by "; }

/* Style rules for the company's logo */
body .navbar-header > .navbar-brand > img {
    max-height: 100%;
    max-width: 250px;
    object-fit: contain;
}

body footer .version > span:not(:empty)::before { content: "v"; }
