﻿

.numOfCompetition {
    font-weight: 900;
}



/*選擇學年選單*/
.chooseSchoolYear
{

}

/*選擇校內校外選單*/
.chooseTernal
{

}

.competition
{
    display : flex;
    flex-direction : row;
    flex-wrap : wrap;
    justify-content : flex-start;
    align-items: baseline;
    margin-bottom : 1rem;
    position : relative;
}

.date
{
    margin-right : 2rem;
    flex-grow : 0;
    flex-shrink : 0;
}

.name {
    flex-grow: 1;
    flex-shrink: 1;
}

.editIcon {
    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .competition
    {
        display : block;
    }
    .date {
        display: block;
    }

    .name {
        display: block;
    }
}