exchange-bar.scss 567 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5
.exchange-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
zhanghaozhe committed
6
    position: absolute;
xuzhenghua committed
7
    top: 96px;
zhanghaozhe committed
8 9 10
    left: 0;
    z-index: 10;
    background: $white;
zhanghaozhe committed
11 12 13

    button {
        display: inline-block;
xuzhenghua committed
14 15 16 17
        width: 64px;
        height: 33px;
        line-height: 33px;
        font-size: $font_14;
zhanghaozhe committed
18 19 20 21
        color: $white;
        background-color: $bg_ccc;
        border: none;
        -webkit-appearance: none;
xuzhenghua committed
22
        border-radius: 3px;
zhanghaozhe committed
23 24 25 26 27 28

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