81 lines
1.1 KiB
CSS
81 lines
1.1 KiB
CSS
.header {
|
|
border-bottom: 1px solid #e5e6eb;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.headerInner {
|
|
height: 100%;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.brand {
|
|
display: flex;
|
|
width: 196px;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: #1d2129;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.brandMark {
|
|
display: inline-flex;
|
|
width: 20px;
|
|
height: 20px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 4px;
|
|
background: #1874ff;
|
|
color: #ffffff;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.headerNav {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
gap: 8px;
|
|
height: 100%;
|
|
}
|
|
|
|
.headerUser {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.navbar {
|
|
border-right: 1px solid #e5e6eb;
|
|
background: #ffffff;
|
|
transition: width 0.2s ease;
|
|
}
|
|
|
|
.navbarScroll {
|
|
height: calc(100vh - 108px);
|
|
padding: 8px 8px 0;
|
|
}
|
|
|
|
.navbarFooter {
|
|
border-top: 1px solid #e5e6eb;
|
|
padding: 6px 0 0;
|
|
}
|
|
|
|
.main {
|
|
background: #f7f8fa;
|
|
}
|
|
|
|
|
|
.userName {
|
|
color: #1d2129;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.userBaseCity {
|
|
color: #86909c;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
} |