@import '../../_coreStyles.scss';
.bolt-coin-content {
    align-items: center;
    background-color: $neutral-30; // Default color for unknown coins, will usually be overridden by the component itself
    border-radius: 50%;
    color: white;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
    user-select: none;

    @include ms-high-contrast-override {
        background-color: WindowText;
    }

    &.using-image {
        object-fit: cover;
        background-color: transparent;
    }

    &.pending-load-image {
        visibility: hidden;
    }

    // Line-height is kind of a hack here
    // align-items: center doesn't quite center the text
    &.size16 {
        font-size: $fontSizeS;
        width: 1rem;
        height: 1rem;
    }

    &.size20 {
        font-size: $fontSizeS;
        width: 1.25rem;
        height: 1.25rem;
    }
    &.size24 {
        font-size: $fontSizeS;
        width: 1.5rem;
        height: 1.5rem;
    }
    &.size32 {
        font-size: $fontSizeM;
        width: 2rem;
        height: 2rem;
    }
    &.size40 {
        font-size: $fontSizeM;
        width: 2.5rem;
        height: 2.5rem;
    }
    &.size72 {
        font-size: $fontSizeLLL;
        width: 4.5rem;
        height: 4.5rem;
    }
}