63 lines
854 B
SCSS
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;
|
|
}
|