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

.result {
  text-align: center;
ddcat1115's avatar
ddcat1115 committed
5 6
  width: 72%;
  margin: 0 auto;
7 8

  .icon {
ddcat1115's avatar
ddcat1115 committed
9 10 11
    font-size: 72px;
    line-height: 72px;
    margin-bottom: 24px;
12 13 14 15 16 17 18 19 20 21 22

    & > .success {
      color: @success-color;
    }

    & > .error {
      color: @error-color;
    }
  }

  .title {
ddcat1115's avatar
ddcat1115 committed
23
    font-size: 24px;
24 25
    color: @heading-color;
    font-weight: 500;
ddcat1115's avatar
ddcat1115 committed
26 27
    line-height: 32px;
    margin-bottom: 16px;
28 29 30 31
  }

  .description {
    font-size: 14px;
nikogu's avatar
nikogu committed
32
    line-height: 22px;
33
    color: @text-color-secondary;
ddcat1115's avatar
ddcat1115 committed
34
    margin-bottom: 24px;
35 36 37
  }

  .extra {
ddcat1115's avatar
ddcat1115 committed
38
    background: #fafafa;
ddcat1115's avatar
ddcat1115 committed
39
    padding: 24px 40px;
40 41 42 43
    border-radius: @border-radius-sm;
    text-align: left;
  }

ddcat1115's avatar
ddcat1115 committed
44
  .actions {
ddcat1115's avatar
ddcat1115 committed
45
    margin-top: 32px;
ddcat1115's avatar
ddcat1115 committed
46 47 48 49

    button:not(:last-child) {
      margin-right: 8px;
    }
50 51
  }
}