﻿@import "/UI/Menu/SubPanel.scss";

JoinLobby {
    .loading {
        width: 100%;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-top: 12px;
    }

    .lobby-list {
        margin-top: 12px;
        gap: 6px;
        flex-direction: column;
        overflow: scroll;
        height: 100%;
    }

    .lobby {
        flex-shrink: 0;
        gap: 4px;
        font-size: 16px;
        padding: 4px;
        border-radius: 8px;
        align-items: center;

        > i {
            margin-bottom: 4px;
        }

        &:hover {
            background-color: lighten(#101021, 100%);
        }
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
