@import '/UI/Style.scss';

TabButton {
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px 10px;
    font-family: $font-main;
    background-color: $gray-darker;
    color: $white;
    text-transform: uppercase;
    font-size: 32px;
    transition: all 0.075s ease-in-out;
    flex-shrink: 0;

    &:hover {
        transform: scale(1.05);
        background-color: lighten($light-gray, 0.2);
        cursor: pointer;
        sound-in: 'hover';
    }

    &:active {
        transform: scale(1.01);
        background-color: lighten($light-gray, 0.5);
        sound-in: 'light_click';
    }

    &.selected {
        background-color: $white;
        color: $gray-darker;
    }
}