| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .app-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- min-height: var(--statusbar-height);
- color: #fff;
- background-color: var(--header-bg);
- //background-color: #2c875f;
- //border-bottom: 1px solid #f2f2f2;
- padding: 0 20px;
- &__left {
- display: flex;
- align-items: center;
- /deep/ .el-breadcrumb__inner {
- color: #fff;
- &.is-link {
- color: inherit;
- }
- }
- }
- &__right {
- display: flex;
- align-items: center;
- .iconbar {
- display: flex;
- align-items: center;
- gap: 20px;
- [class^='g-icon'] {
- cursor: pointer;
- &:before {
- font-size: 22px;
- }
- }
- .g-icon {
- &--notice::before {
- content: var(--icon-notice);
- }
- &--message::before {
- content: var(--icon-message);
- }
- &--counter::before {
- content: var(--icon-counter);
- }
- &--certificate::before {
- content: var(--icon-certificate);
- }
- &--minimize::before {
- content: var(--icon-minimize);
- }
- &--maximize::before {
- content: var(--icon-maximize);
- }
- }
- }
- .user-dropdown {
- color: #fff;
- margin-left: 20px;
- &__link {
- display: flex;
- align-items: center;
- font-weight: bold;
- cursor: pointer;
- }
- .g-image--avatar {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- font-size: 0;
- margin-right: 4px;
- }
- }
- }
- }
|