Login.less 501 Bytes
Newer Older
jim's avatar
jim committed
1
@import '~antd/lib/style/themes/default.less';
2 3 4 5

.main {
  width: 368px;
  margin: 0 auto;
6 7 8
  @media screen and (max-width: @screen-sm) {
    width: 95%;
  }
9

ddcat1115's avatar
ddcat1115 committed
10 11 12
  .icon {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.2);
13 14 15
    margin-left: 16px;
    vertical-align: middle;
    cursor: pointer;
jim's avatar
jim committed
16
    transition: color 0.3s;
17 18

    &:hover {
ddcat1115's avatar
ddcat1115 committed
19
      color: @primary-color;
20 21 22 23 24
    }
  }

  .other {
    text-align: left;
ddcat1115's avatar
ddcat1115 committed
25
    margin-top: 24px;
nikogu's avatar
nikogu committed
26
    line-height: 22px;
27 28 29 30 31 32

    .register {
      float: right;
    }
  }
}