@import '../../Core/_platformCommon.scss';
.bolt-coin-content {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;

    justify-content: center;

    color: white;
    background-color: $neutral-30; // Default color for unknown coins, will usually be overridden by the component itself
    user-select: none;

    &.using-image {
        object-fit: cover;
        background-color: transparent;
    }

    &.pending-load-image {
        display: none;
    }

    // Line-height is kind of a hack here
    // align-items: center doesn't quite center the text
    &.size16 {
        font-size: $fontSizeS;
        line-height: 15px;
        width: 16px;
        height: 16px;
    }

    &.size20 {
        font-size: $fontSizeS;
        line-height: 19px;
        width: 20px;
        height: 20px;
    }
    &.size24 {
        font-size: $fontSizeS;
        line-height: 24px;
        width: 24px;
        height: 24px;
    }
    &.size32 {
        font-size: $fontSizeM;
        line-height: 31px;
        width: 32px;
        height: 32px;
    }
    &.size40 {
        font-size: $fontSizeM;
        line-height: 39px;
        width: 40px;
        height: 40px;
    }
    &.size72 {
        font-size: $fontSizeLLL;
        line-height: 70px;
        width: 72px;
        height: 72px;
    }
}