Files
mini-programs/src/components/GeneralNavbar/index.module.scss
张成 1226350099 1
2025-11-14 23:14:18 +08:00

63 lines
854 B
SCSS

.customNavbar {
position: fixed;
top: 0;
left: 0;
z-index: 99;
width: 100%;
background-color: #FAFAFA;
box-shadow: none;
}
.navbarContent {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
padding: 0 16px;
}
.leftSection {
display: flex;
align-items: center;
gap: 8px;
flex: 1;
}
.centerSection {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
position: absolute;
left: 0;
right: 0;
pointer-events: none;
}
.rightSection {
display: flex;
align-items: center;
min-width: 60px;
}
.title {
font-size: 18px;
font-weight: 600;
color: #333;
text-align: left;
pointer-events: auto;
}
.backIcon {
width: 24px;
height: 24px;
cursor: pointer;
}
.avatar {
width: 32px;
height: 32px;
border-radius: 50%;
object-fit: cover;
}