exchange-bar.scss 578 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6
.exchange-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    border-bottom: 1px solid $border_e7eaf1;
zhanghaozhe committed
7 8 9 10 11
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: $white;
zhanghaozhe committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

    button {
        display: inline-block;
        width: 84px;
        height: 36px;
        line-height: 36px;
        font-size: $font_16;
        color: $white;
        background-color: $bg_ccc;
        border: none;
        -webkit-appearance: none;

        &.active {
            background-color: $active;
        }
    }
}