index.less 772 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 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

  .icon {
    font-size: 72px;
    line-height: 72px;
    margin-bottom: 24px;

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

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

  .title {
    font-size: 24px;
    color: @heading-color;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .description {
    font-size: 14px;
    color: @text-color-secondary;
    margin-bottom: 24px;
  }

  .extra {
    background: rgba(245, 245, 245, 0.5);
    padding: 24px 40px;
    margin-bottom: 32px;
    border-radius: @border-radius-sm;
    text-align: left;
  }

  .actions button:not(:last-child) {
    margin-right: 8px;
  }
}