| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- .layout {
- box-sizing: border-box;
- width: 1340px;
- height: 100%;
- margin: 0 auto;
- padding: 20px;
- user-select: none;
- }
- :global {
- .ant-drawer-content {
- overflow: visible;
- // border-radius: 10px;
- background: transparent;
- }
- .ant-drawer-content-wrapper {
- // border-radius: 10px;
- }
- }
- .header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- height: 100px;
- padding: 20px 0 40px 0;
- .title {
- color: #000000;
- font-weight: 600;
- font-size: 24px;
- }
- .right {
- display: flex;
- align-items: center;
- .picture {
- width: 40px;
- height: 40px;
- margin-right: 24px;
- background-color: #4f4f4f;
- border-radius: 40px;
- }
- .notify {
- margin-right: 24px;
- cursor: pointer;
- :global {
- .ant-notification-notice-message {
- color: #656872;
- font-size: 14px;
- }
- .ant-notification-notice-description {
- color: #c4c4c4;
- }
- }
- }
- }
- }
|