12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .layout {
- position: relative;
- box-sizing: border-box;
- width: 1340px;
- height: 100%;
- margin: 0 auto;
- padding: 20px 0px;
- text-decoration: none;
- user-select: none;
- }
- :global {
- .ant-drawer-content {
- overflow: visible;
-
- background: transparent;
- }
- .ant-drawer-content-wrapper {
-
- }
- .ant-notification-notice-icon {
- top: 30px;
- }
- }
- .header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- height: 75px;
- padding: 15px 0 20px 0;
- .title {
- display: flex;
- align-items: baseline;
- .project {
- display: flex;
- flex-direction: column;
- color: #000;
- font-weight: 600;
- font-size: 24px;
- cursor: pointer;
- .projectName {
- color: #c4c4c4;
- font-size: 14px;
- }
- }
- }
- .right {
- display: flex;
- align-items: center;
- .picture {
- width: 40px;
- height: 40px;
- margin-right: 24px;
-
-
- }
- .notify {
- margin-right: 30px;
- cursor: pointer;
- :global {
- .ant-notification-notice-message {
- color: #656872;
- font-size: 14px;
- }
- .ant-notification-notice-description {
- color: #c4c4c4;
- }
- }
- }
- }
- }
|