index.less 811 Bytes
Newer Older
1 2 3 4
@import "~antd/lib/style/themes/default.less";

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

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

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

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

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

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

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

ddcat1115's avatar
ddcat1115 committed
45
  .actions {
nikogu's avatar
nikogu committed
46
    margin-top: 40px;
ddcat1115's avatar
ddcat1115 committed
47 48 49 50

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