index.scss 605 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
.open-app {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    height: 44px;
    padding: 0 15px;
    border-top: 1px solid $border_ddd;
    background: $white;

    .left {
        font-size: $font_12;
        color: $color_555;
    }

    .right {
        width: 88px;
        height: 22px;
xuzhenghua committed
23
        line-height: 22px;
zhanghaozhe committed
24 25 26 27 28
        border: 1px solid $active;
        border-radius: 11px;
        color: $active;
        font-size: $font_12;
        background: transparent;
xuzhenghua committed
29
        text-align: center;
zhanghaozhe committed
30 31
    }
}