﻿/* ORIGINALI MODIFICATI (overwrite) */
/* overflow-y: auto; SCROLLABLE Y DA MOBILE */
.blazored-modal-container {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    /*Aggiunto*/
    overflow-y: auto;
}

/* overflow-y: auto; +TopCenter SCROLLABLE Y DA MOBILE */
.blazored-modal-topcenter {
    justify-content: center;
    /*align-items: center;*/
    /*Aggiunto*/
    align-items: flex-start;
    top: 10px;
    overflow-y: auto;
}
