| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @import '~antd/es/style/themes/default.less';
- .baseView {
- display: flex;
- height: calc(100vh - 48px - 48px - 32px - 16px - 62px);
- overflow-y: auto;
- :global {
- .ant-legacy-form-item .ant-legacy-form-item-control-wrapper {
- width: 100%;
- }
- }
- .left {
- flex: 2;
- }
- .right {
- flex: 1;
- padding-left: 104px;
- .avatar_title {
- height: 22px;
- margin-bottom: 8px;
- color: @heading-color;
- font-size: @font-size-base;
- line-height: 22px;
- }
- .avatar {
- width: 144px;
- height: 144px;
- margin-bottom: 12px;
- overflow: hidden;
- img {
- width: 100%;
- }
- }
- .button_view {
- width: 144px;
- text-align: center;
- }
- }
- }
- .area_code {
- width: 72px;
- }
- .phone_number {
- width: 214px;
- }
- @media screen and (max-width: @screen-xl) {
- .baseView {
- flex-direction: column-reverse;
- .right {
- display: flex;
- flex-direction: column;
- align-items: center;
- max-width: 448px;
- padding: 20px;
- .avatar_title {
- display: none;
- }
- }
- }
- }
|