| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import '~antd/lib/style/themes/default.less';
- .result {
- text-align: center;
- width: 72%;
- margin: 0 auto;
- @media screen and (max-width: @screen-xs) {
- width: 100%;
- }
- .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;
- line-height: 22px;
- color: @text-color-secondary;
- margin-bottom: 24px;
- }
- .extra {
- background: #fafafa;
- padding: 24px 40px;
- border-radius: @border-radius-sm;
- text-align: left;
- @media screen and (max-width: @screen-xs) {
- padding: 18px 20px;
- }
- }
- .actions {
- margin-top: 32px;
- button:not(:last-child) {
- margin-right: 8px;
- }
- }
- }
|