.library-name a {
    position: relative;
    --logo-width: 150px;
    margin-left: calc(var(--logo-width) + 5px);
    color: transparent; /* Hide module name in header */
}

.library-name a::before {
    content: '';
    background: url("../images/docs_logo.svg") center no-repeat;
    background-size: contain;
    position: absolute;
    width: var(--logo-width);
    height: 50px;
    top: -18px;
    left: calc(-1 * var(--logo-width) - 5px);
}
