1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- @import '~antd/es/style/themes/default.less';
- .stepForm {
- max-width: 500px;
- margin: 40px auto 0;
- }
- .stepFormText {
- margin-bottom: 24px;
- :global {
- .ant-form-item-label,
- .ant-form-item-control {
- line-height: 22px;
- }
- }
- }
- .result {
- max-width: 560px;
- margin: 0 auto;
- padding: 24px 0 8px;
- }
- .desc {
- padding: 0 56px;
- color: @text-color-secondary;
- h3 {
- margin: 0 0 12px 0;
- color: @text-color-secondary;
- font-size: 16px;
- line-height: 32px;
- }
- h4 {
- margin: 0 0 4px 0;
- color: @text-color-secondary;
- font-size: 14px;
- line-height: 22px;
- }
- p {
- margin-top: 0;
- margin-bottom: 12px;
- line-height: 22px;
- }
- }
- @media screen and (max-width: @screen-md) {
- .desc {
- padding: 0;
- }
- }
- .information {
- line-height: 22px;
- :global {
- .ant-row:not(:last-child) {
- margin-bottom: 24px;
- }
- }
- .label {
- padding-right: 8px;
- color: @heading-color;
- text-align: right;
- @media screen and (max-width: @screen-sm) {
- text-align: left;
- }
- }
- }
- .uppercase {
- font-size: 12px;
- }
|