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

.main {
  width: 368px;
  margin: 0 auto;

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

    &:hover {
ddcat1115's avatar
ddcat1115 committed
16
      color: @primary-color;
17 18 19 20 21
    }
  }

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

    .register {
      float: right;
    }
  }
}