app-index-view.less 1.6 KB
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
.app-index-view{
    position: relative;
}



.index_view{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    .index_header{
        height:50px;
        padding:0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        .header-left{
            display: flex;
            align-items: center;
            justify-content: space-between;
            .el-menu.el-menu--horizontal{
                border-bottom: none;
                 .el-submenu{
                    border-top: none;
                }
            }
        }
        > div {
            line-height: 49px;
        }
    }
    .index_content{
        background-color:#fff;
        height:calc(100vh - 50px);
        overflow-x: hidden;
        overflow-y: hidden;
    }
    >.ivu-layout {
        >.ivu-layout {
            height: calc(100vh - 50px);
        }
    }
    .ivu-layout .ivu-layout-sider .ivu-layout-sider-children .sider-top{
        line-height: 58px;
        text-align: right;
        padding-right: 18px;
    }
    .ivu-layout .ivu-layout-sider .ivu-layout-sider-children .sider-top .ivu-icon{
        font-size: 20px;
        padding: 4px;
        margin-top: -2px;
        cursor: pointer;
    }
}

/***    BRGIN:滚动条样式    ***/
::-webkit-scrollbar {
    background: transparent;
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background-color: #cecece;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0;
}