• liujiaxin's avatar
    1 · 5699827a
    liujiaxin authored
    5699827a
mixin.scss 337 Bytes
@mixin hide-overflow-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@mixin k-no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@mixin k-img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}