index.scss 567 Bytes
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
zhanghaozhe committed
2
.open-app {
zhanghaozhe committed
3 4 5 6 7 8
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
zhanghaozhe committed
9

zhanghaozhe committed
10 11 12 13 14
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border-top: 1px solid $border_ddd;
  background: $white;
zhanghaozhe committed
15

zhanghaozhe committed
16 17 18 19
  .left {
    font-size: $font_12;
    color: $color_555;
  }
zhanghaozhe committed
20

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