モーダルfixedでセンター配置 CSS

03/09/2016

作ってる時忘れがちですが、min-height設定しないと画面小さい時スクロールできません。

/* ===========================================================
// .modal
 ===========================================================*/
 .modal{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    right: 0;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0,0,0,0.7);
    overflow:scroll;
    .modal__view{
        position:relative;
        width: 100%;
        height: 100%;
        min-height: 900px;
    }
    .modal__box{
        position:relative;
        top: 50%;
        left:50%;
        @include translate(-50%,-50%);
        width: 964px;
        height: 858px;
        background-color: #FFF;
    }
 }

web

Posted by admin