app-style2-footer.less 769 字节
Newer Older
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
.app-style2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    z-index: 10;
    .app-style2-footer__left{
        justify-content: left;
    }

    .app-style2-footer__content{
        justify-content: center;
    }

    .app-style2-footer__right {
        justify-content: end;
    }
}
.app-style2-footer__left,
.app-style2-footer__content,
.app-style2-footer__right {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    flex: 1;       
    .app-style2-footer__item {
        cursor: pointer;
        padding: 0px 6px;
        margin: 0 5px;
        .action-item i{
            margin-right: 6px;
        }
    }
}
.app-style2-footer__bottom__action-item{
    padding-top: 5px;
}