PlatformConfig.less 454 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
.formImg {
  position: relative;
  width: 80px;
  height: 80px;

  .mask {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 1;
    cursor: pointer;

    .icon {
      font-size: 24px;
      color: #fff;
    }
  }

  img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-color: #ccc;
  }
}