index.scss 286 Bytes
Newer Older
zhanghaozhe committed
1
$red: #ff2121;
zhanghaozhe committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
$gray: #999;
.prices {
  display: flex;
  align-items: center;
  .current {
    margin-right: 14px;
    font-size: 15px;
    color: $red;
  }

  .origin {
    font-size: 11px;
    text-decoration: line-through;
    color: $gray;
  }

  .sign {
    font-size: 11px;
  }
zhanghaozhe committed
21
}