/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

.library-name a {
    position: relative;
    --logo-width: 72px;
    margin-left: calc(var(--logo-width) + 5px);
}

.library-name a::before {
    content: '';
    /* path is relative to final asset location output dir */
    background-image: url('../images/aws_logo_white_59x35.png');
    background-size: contain;
    position: absolute;
    width: 59px;
    height: 35px;
    top: -10px;
    left: calc(-1 * var(--logo-width) - 5px);
}
